forked from mirrors/nixpkgs
unstick: init at 0.1.0
This commit is contained in:
parent
b0dac58dc1
commit
733113ed97
26
pkgs/os-specific/linux/unstick/default.nix
Normal file
26
pkgs/os-specific/linux/unstick/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -25808,4 +25808,6 @@ in
|
|||
sentencepiece = callPackage ../development/libraries/sentencepiece {};
|
||||
|
||||
kcli = callPackage ../development/tools/kcli {};
|
||||
|
||||
unstick = callPackage ../os-specific/linux/unstick {};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue