depot/third_party/nixpkgs/pkgs/by-name/gu/guile-semver/package.nix
Default email 159e378cbb Project import generated by Copybara.
GitOrigin-RevId: c04d5652cfa9742b1d519688f65d1bbccea9eb7e
2024-09-19 17:19:46 +03:00

33 lines
763 B
Nix

{ lib
, stdenv
, fetchurl
, autoreconfHook
, pkg-config
, texinfo
, guile
}:
stdenv.mkDerivation rec {
pname = "guile-semver";
version = "0.1.1";
src = fetchurl {
url = "https://files.ngyro.com/guile-semver/guile-semver-${version}.tar.gz";
hash = "sha256-T3kJGTdf6yBKjqLtqSopHZu03kyOscZ3Z4RYmoYlN4E=";
};
strictDeps = true;
nativeBuildInputs = [ autoreconfHook guile pkg-config texinfo ];
buildInputs = [ guile ];
doCheck = true;
meta = with lib; {
description =
"A GNU Guile library implementing Semantic Versioning 2.0.0";
homepage = "https://ngyro.com/software/guile-semver.html";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ foo-dogsquared ];
platforms = guile.meta.platforms;
};
}