Merge pull request #133616 from q60/master

profetch: init at 0.1.6
This commit is contained in:
figsoda 2021-09-14 17:38:45 -04:00 committed by GitHub
commit cf0caf529c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 39 additions and 0 deletions

View File

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

View File

@ -3303,6 +3303,8 @@ with pkgs;
inherit (darwin) libiconv;
};
profetch = callPackage ../tools/misc/profetch { };
psrecord = python3Packages.callPackage ../tools/misc/psrecord {};
reg = callPackage ../tools/virtualization/reg { };