mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 23:13:19 +00:00
ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
28 lines
759 B
Nix
28 lines
759 B
Nix
{ stdenv, lib, fetchFromGitHub, meson, ninja, pkg-config, libseccomp }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "unstick";
|
|
version = "0.1.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "kwohlfahrt";
|
|
repo = "unstick";
|
|
rev = "effee9aa242ca12dc94cc6e96bc073f4cc9e8657";
|
|
sha256 = "08la3jmmzlf4pm48bf9zx4cqj9gbqalpqy0s57bh5vfsdk74nnhv";
|
|
};
|
|
|
|
sourceRoot = "${src.name}/src";
|
|
|
|
nativeBuildInputs = [ meson ninja pkg-config ];
|
|
buildInputs = [ libseccomp ];
|
|
|
|
meta = {
|
|
homepage = "https://github.com/kwohlfahrt/unstick";
|
|
description = "Silently eats chmod commands forbidden by Nix";
|
|
mainProgram = "unstick";
|
|
license = lib.licenses.gpl3;
|
|
platforms = lib.platforms.linux;
|
|
maintainers = with lib.maintainers; [ kwohlfahrt ];
|
|
};
|
|
}
|