Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
39 lines
782 B
Nix
39 lines
782 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 = "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;
|
|
};
|
|
}
|