mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-03 19:43:30 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
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 ];
|
|
};
|
|
}
|