summary refs log tree commit diff
path: root/pkgs/by-name/ga/gash-utils/package.nix
blob: bea8d6730e77e0c76592b6b7c0ae98390f86a049 (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
38
39
40
41
42
43
44
45
46
47
{ lib
, stdenv
, fetchurl
, guile
, makeWrapper
, pkg-config
, gash
}:

stdenv.mkDerivation (finalAttrs: {
  pname = "gash-utils";
  version = "0.2.0";

  src = fetchurl {
    url = "mirror://savannah/gash/gash-utils-${finalAttrs.version}.tar.gz";
    hash = "sha256-5qrlpvQP34xfhzD2bD+MMEe94A+M2XWV9arSRElZ1KM=";
  };

  strictDeps = true;

  nativeBuildInputs = [
    guile # buildPlatform's guile is needed at build time
    makeWrapper
    pkg-config
  ];

  buildInputs = [
    gash
    guile
  ];

  postInstall = ''
    for f in $out/bin/*; do
      wrapProgram $f \
        --prefix GUILE_LOAD_PATH : "$out/${guile.siteDir}:$GUILE_LOAD_PATH" \
        --prefix GUILE_LOAD_COMPILED_PATH : "$out/${guile.siteCcacheDir}:$GUILE_LOAD_COMPILED_PATH"
    done
  '';

  meta = with lib; {
    description = "Core POSIX utilities written in Guile Scheme";
    homepage = "https://savannah.nongnu.org/projects/gash/";
    license = licenses.gpl3Plus;
    maintainers = with maintainers; [ wegank ];
    platforms = platforms.all;
  };
})