2022-06-22 13:50:47 +02:00
|
|
|
{ lib, coreutils, git, gnused, makeWrapper, stdenvNoCC }:
|
2021-04-27 19:14:49 +02:00
|
|
|
stdenvNoCC.mkDerivation rec {
|
2021-04-25 14:12:37 +02:00
|
|
|
pname = "diff-flake";
|
2023-03-16 12:45:04 +01:00
|
|
|
version = "0.4.0";
|
2021-04-25 14:12:37 +02:00
|
|
|
|
|
|
|
src = ./diff-flake;
|
|
|
|
|
|
|
|
buildInputs = [
|
2021-04-27 19:14:49 +02:00
|
|
|
makeWrapper
|
2021-04-25 14:12:37 +02:00
|
|
|
];
|
|
|
|
|
2021-08-31 19:01:18 +02:00
|
|
|
dontUnpack = true;
|
|
|
|
|
2022-06-22 13:50:47 +02:00
|
|
|
dontBuild = true;
|
2021-04-25 14:12:37 +02:00
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out/bin
|
2021-04-27 19:14:49 +02:00
|
|
|
cp $src $out/bin/${pname}
|
|
|
|
chmod a+x $out/bin/${pname}
|
2021-04-25 14:12:37 +02:00
|
|
|
'';
|
|
|
|
|
2021-04-27 19:14:49 +02:00
|
|
|
wrapperPath = lib.makeBinPath [
|
|
|
|
coreutils
|
|
|
|
git
|
|
|
|
gnused
|
|
|
|
];
|
|
|
|
|
|
|
|
fixupPhase = ''
|
|
|
|
patchShebangs $out/bin/${pname}
|
|
|
|
wrapProgram $out/bin/${pname} --prefix PATH : "${wrapperPath}"
|
|
|
|
'';
|
2021-04-25 14:12:37 +02:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Nix flake helper to visualize changes in closures";
|
|
|
|
homepage = "https://gitea.belanyi.fr/ambroisie/nix-config";
|
|
|
|
license = with licenses; [ mit ];
|
|
|
|
platforms = platforms.unix;
|
2021-05-13 10:27:19 +02:00
|
|
|
maintainers = with maintainers; [ ambroisie ];
|
2021-04-25 14:12:37 +02:00
|
|
|
};
|
|
|
|
}
|