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.
34 lines
814 B
Nix
34 lines
814 B
Nix
{ lib, stdenv, fetchFromGitHub, makeWrapper, perl, wdiff }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "1.7.2";
|
|
pname = "pkgdiff";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "lvc";
|
|
repo = "pkgdiff";
|
|
rev = version;
|
|
sha256 = "1ahknyx0s54frbd3gqh070lkv3j1b344jrs6m6p1s1lgwbd70vnb";
|
|
};
|
|
|
|
buildInputs = [ perl ];
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
dontBuild = true;
|
|
|
|
makeFlags = [ "prefix=$(out)" ];
|
|
|
|
postInstall = ''
|
|
wrapProgram $out/bin/pkgdiff --prefix PATH : ${lib.makeBinPath [ wdiff ]}
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Tool for visualizing changes in Linux software packages";
|
|
homepage = "https://lvc.github.io/pkgdiff/";
|
|
license = licenses.gpl2Only;
|
|
maintainers = with maintainers; [ sweber ];
|
|
platforms = platforms.unix;
|
|
mainProgram = "pkgdiff";
|
|
};
|
|
}
|