nixpkgs/pkgs/tools/system/gt5/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
644 B
Nix
Raw Normal View History

2021-01-15 09:19:50 +00:00
{lib, stdenv, fetchurl}:
stdenv.mkDerivation rec {
pname = "gt5";
version = "1.4.0";
2021-01-15 09:19:50 +00:00
src = fetchurl {
url = "mirror://sourceforge/gt5/gt5-${version}.tar.gz";
sha256 = "0gm0gzyp4d9rxqddbaskbz5zvmlhyr4nyb5x9g7x4abyyxqjlnkq";
};
patchPhase = ''
sed 's/-o root -g root//' -i Makefile
'';
preConfigure = ''
makeFlags="$makeFlags PREFIX=$out"
'';
meta = {
description = "A diff-capable 'du' browser";
homepage = "https://gt5.sourceforge.net/";
2021-01-15 09:19:50 +00:00
license = lib.licenses.gpl2Plus;
maintainers = with lib.maintainers; [viric];
2021-03-19 06:18:32 +00:00
platforms = with lib.platforms; all;
2023-11-27 01:17:53 +00:00
mainProgram = "gt5";
};
}