nixpkgs/pkgs/tools/misc/profetch/default.nix

37 lines
858 B
Nix
Raw Normal View History

2021-08-12 11:27:25 +00:00
{ stdenv, lib
, fetchFromGitHub, gprolog }:
stdenv.mkDerivation rec {
pname = "profetch";
version = "0.1.6";
2021-08-12 11:27:25 +00:00
src = fetchFromGitHub {
owner = "RustemB";
repo = pname;
rev = "v${version};
2021-08-12 11:27:25 +00:00
sha256 = "1clh3l50wz6mlrw9kx0wh2bbhnz6bsksyh4ngz7givv4y3g9m702";
};
buildInputs = [ gprolog ];
buildPhase = ''
gplc profetch.pl --no-top-level \
--no-debugger --no-fd-lib \
--no-fd-lib-warn --min-size -o profetch
runHook postBuild
2021-08-12 11:27:25 +00:00
'';
installPhase = ''
runHook preInstall
2021-08-12 11:27:25 +00:00
install -Dm755 -t $out/bin profetch
'';
meta = with lib; {
description = "System Information Fetcher Written in GNU/Prolog";
homepage = "https://github.com/RustemB/profetch";
license = licenses.gpl3;
platforms = platforms.all;
maintainers = [ maintainers.vel ];
};
}