mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 04:02:55 +03:00
Merge pull request #257984 from foo-dogsquared/add-guile-semver
guile-semver: init at 0.1.1
This commit is contained in:
commit
fcc436430f
33
pkgs/by-name/gu/guile-semver/package.nix
Normal file
33
pkgs/by-name/gu/guile-semver/package.nix
Normal file
@ -0,0 +1,33 @@
|
||||
{ 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/${pname}-${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;
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user