about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/misc/profetch/default.nix
blob: c113f48fd13ddb2eb6e7948f34c999100c613d8f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{ stdenv, lib, fetchFromGitHub, gprolog }:

stdenv.mkDerivation rec {
  pname = "profetch";
  version = "0.1.7";

  src = fetchFromGitHub {
    owner = "RustemB";
    repo = pname;
    rev = "v${version}";
    sha256 = "sha256-JsjpPUXMN0jytRS4yzSjrseqHiEQ+YinklG+tIIy+Zo=";
  };

  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 ];
  };
}