unstick: init at 0.1.0

This commit is contained in:
Kai Wohlfahrt 2019-12-13 13:40:05 +00:00
parent b0dac58dc1
commit 733113ed97
2 changed files with 28 additions and 0 deletions

View file

@ -0,0 +1,26 @@
{ stdenv, lib, fetchFromGitHub, meson, ninja, pkgconfig, libseccomp }:
stdenv.mkDerivation rec {
name = "unstick";
version = "0.1.0";
src = fetchFromGitHub {
owner = "kwohlfahrt";
repo = name;
rev = "effee9aa242ca12dc94cc6e96bc073f4cc9e8657";
sha256 = "08la3jmmzlf4pm48bf9zx4cqj9gbqalpqy0s57bh5vfsdk74nnhv";
};
sourceRoot = "source/src";
nativeBuildInputs = [ meson ninja pkgconfig ];
buildInputs = [ libseccomp ];
meta = {
homepage = "https://github.com/kwohlfahrt/unstick";
description = "Silently eats chmod commands forbidden by Nix";
license = lib.licenses.gpl3;
platforms = lib.platforms.linux;
maintainers = with lib.maintainers; [ kwohlfahrt ];
};
}

View file

@ -25808,4 +25808,6 @@ in
sentencepiece = callPackage ../development/libraries/sentencepiece {};
kcli = callPackage ../development/tools/kcli {};
unstick = callPackage ../os-specific/linux/unstick {};
}