base16-schemes: unstable-2024-06-21 -> unstable-2024-11-12
[NixPkgs.git] / pkgs / by-name / gu / guile-semver / package.nix
blob3d4713f709666cf04fc33df3c05f62f4c68483a1
1 { lib
2 , stdenv
3 , fetchurl
4 , autoreconfHook
5 , pkg-config
6 , texinfo
7 , guile
8 }:
10 stdenv.mkDerivation rec {
11   pname = "guile-semver";
12   version = "0.1.1";
14   src = fetchurl {
15     url = "https://files.ngyro.com/guile-semver/guile-semver-${version}.tar.gz";
16     hash = "sha256-T3kJGTdf6yBKjqLtqSopHZu03kyOscZ3Z4RYmoYlN4E=";
17   };
19   strictDeps = true;
20   nativeBuildInputs = [ autoreconfHook guile pkg-config texinfo ];
21   buildInputs = [ guile ];
23   doCheck = true;
25   meta = with lib; {
26     description =
27       "A GNU Guile library implementing Semantic Versioning 2.0.0";
28     homepage = "https://ngyro.com/software/guile-semver.html";
29     license = licenses.gpl3Plus;
30     maintainers = with maintainers; [ foo-dogsquared ];
31     platforms = guile.meta.platforms;
32   };