gash: init at 0.3.0

This commit is contained in:
Weijia Wang 2023-09-05 19:39:54 +02:00
parent 53b7d1a5d4
commit d249a07758

View File

@ -0,0 +1,35 @@
{ lib
, stdenv
, fetchurl
, guile
, pkg-config
}:
stdenv.mkDerivation (finalAttrs: {
pname = "gash";
version = "0.3.0";
src = fetchurl {
url = "mirror://savannah/gash/gash-${finalAttrs.version}.tar.gz";
hash = "sha256-VGrsaRBo1nfFjd/BVpXbn4CGFuGfpzMi1Ppno8iXwqk=";
};
strictDeps = true;
nativeBuildInputs = [
guile # buildPlatform's guile is needed at build time
pkg-config
];
buildInputs = [
guile
];
meta = with lib; {
description = "POSIX-compatible shell written in Guile Scheme";
homepage = "https://savannah.nongnu.org/projects/gash/";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ wegank ];
platforms = platforms.all;
};
})