Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / by-name / ga / gash / package.nix
blob49dca7962907163959cbc93eaf86a790d006cde0
1 { lib
2 , stdenv
3 , fetchurl
4 , guile
5 , pkg-config
6 }:
8 stdenv.mkDerivation (finalAttrs: {
9   pname = "gash";
10   version = "0.3.0";
12   src = fetchurl {
13     url = "mirror://savannah/gash/gash-${finalAttrs.version}.tar.gz";
14     hash = "sha256-VGrsaRBo1nfFjd/BVpXbn4CGFuGfpzMi1Ppno8iXwqk=";
15   };
17   strictDeps = true;
19   nativeBuildInputs = [
20     guile # buildPlatform's guile is needed at build time
21     pkg-config
22   ];
24   buildInputs = [
25     guile
26   ];
28   meta = with lib; {
29     description = "POSIX-compatible shell written in Guile Scheme";
30     homepage = "https://savannah.nongnu.org/projects/gash/";
31     license = licenses.gpl3Plus;
32     maintainers = with maintainers; [ wegank ];
33     platforms = platforms.all;
34   };