nixpkgs/pkgs/tools/package-management/niff/default.nix
Alexis Hildebrandt 755b915a15 treewide: Remove indefinite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-06-09 23:07:45 +02:00

35 lines
664 B
Nix

{ lib, stdenv
, python3
, fetchFromGitHub
}:
let
pname = "niff";
version = "0.1";
in stdenv.mkDerivation {
name = "${pname}-${version}";
src = fetchFromGitHub {
owner = "FRidh";
repo = "niff";
rev = "v${version}";
sha256 = "1ziv5r57jzg2qg61izvkkyq1bz4p5nb6652dzwykfj3l2r3db4bi";
};
buildInputs = [ python3 ];
dontBuild = true;
installPhase = ''
mkdir -p $out/bin
cp niff $out/bin/niff
'';
meta = {
description = "Program that compares two Nix expressions and determines which attributes changed";
homepage = "https://github.com/FRidh/niff";
license = lib.licenses.mit;
mainProgram = "niff";
};
}