nixpkgs/pkgs/development/libraries/libversion/default.nix

29 lines
640 B
Nix
Raw Normal View History

2018-05-27 17:12:52 +01:00
{ stdenv, fetchFromGitHub, cmake }:
let
version = "2.7.0";
2018-05-27 17:12:52 +01:00
in
stdenv.mkDerivation {
name = "libversion-${version}";
src = fetchFromGitHub {
owner = "repology";
repo = "libversion";
rev = version;
sha256 = "0brk2mbazc7yz0h4zsvbybbaymf497dgxnc74qihnvbi4z4rlqpj";
2018-05-27 17:12:52 +01:00
};
nativeBuildInputs = [ cmake ];
doCheck = true;
checkTarget = "test";
meta = with stdenv.lib; {
description = "Advanced version string comparison library";
homepage = https://github.com/repology/libversion;
license = with licenses; [ mit ];
maintainers = with maintainers; [ ryantm ];
platforms = platforms.unix;
};
}