nixpkgs/pkgs/tools/package-management/niff/default.nix
Frederik Rietdijk 5772ac5a75 Removing FRidh as active maintainer of packages
In the past I was very active with Python packaging.
For several years now I was hardly around as maintainer,
so it does not make sense I am listed as a maintainer for
these makes. Looking back, I should have removed myself
as maintainer already much longer ago. Anyway, better late
than never.

It's been a fun ride, and  I do intend to occasionally contribute
to Nixpkgs, but not in the same way it once was.
2024-04-28 12:20:07 +02:00

35 lines
666 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 = "A program that compares two Nix expressions and determines which attributes changed";
homepage = "https://github.com/FRidh/niff";
license = lib.licenses.mit;
mainProgram = "niff";
};
}