nixpkgs/pkgs/by-name/ga/gash-utils/package.nix

48 lines
1.0 KiB
Nix
Raw Normal View History

2023-09-05 17:40:05 +00:00
{ 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 \
2023-10-11 16:30:32 +00:00
--prefix GUILE_LOAD_PATH : "$out/${guile.siteDir}:$GUILE_LOAD_PATH" \
--prefix GUILE_LOAD_COMPILED_PATH : "$out/${guile.siteCcacheDir}:$GUILE_LOAD_COMPILED_PATH"
2023-09-05 17:40:05 +00:00
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;
};
})