mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-08 14:03:29 +00:00
755b915a15
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/'
35 lines
664 B
Nix
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";
|
|
};
|
|
}
|