forked from mirrors/nixpkgs
libsv: init at 1.1
This commit is contained in:
parent
0c224066f8
commit
a96e7ea59a
23
pkgs/development/libraries/libsv/default.nix
Normal file
23
pkgs/development/libraries/libsv/default.nix
Normal file
|
@ -0,0 +1,23 @@
|
|||
{ lib, stdenv, fetchFromGitHub, cmake }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "libsv";
|
||||
version = "1.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "uael";
|
||||
repo = "sv";
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-icvGQi6FNSZXNGs2oLiUKu6rrVsWcXh1r91kycGjnwY=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ cmake ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Public domain cross-platform semantic versioning in C99";
|
||||
homepage = "https://github.com/uael/sv";
|
||||
license = licenses.unlicense;
|
||||
maintainers = with maintainers; [ candyc1oud ];
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
}
|
|
@ -21554,6 +21554,8 @@ with pkgs;
|
|||
|
||||
libtsm = callPackage ../development/libraries/libtsm { };
|
||||
|
||||
libsv = callPackage ../development/libraries/libsv { };
|
||||
|
||||
libgeotiff = callPackage ../development/libraries/libgeotiff { };
|
||||
|
||||
libu2f-host = callPackage ../development/libraries/libu2f-host { };
|
||||
|
|
Loading…
Reference in a new issue