nixpkgs/pkgs/development/libraries/sblim-sfcc/default.nix

29 lines
772 B
Nix
Raw Normal View History

2017-12-24 01:39:51 +00:00
{ stdenv, fetchFromGitHub, autoreconfHook, curl }:
2015-08-18 12:47:09 +00:00
stdenv.mkDerivation rec {
name = "sblim-sfcc-${version}";
2017-12-24 01:39:51 +00:00
version = "2.2.9"; # this is technically 2.2.9-preview
2015-08-18 12:47:09 +00:00
2017-12-24 01:39:51 +00:00
src = fetchFromGitHub {
owner = "kkaempf";
repo = "sblim-sfcc";
rev = "514a76af2020fd6dc6fc380df76cbe27786a76a2";
sha256 = "06c1mskl9ixbf26v88w0lvn6v2xd6n5f0jd5mckqrn9j4vmh70hs";
2015-08-18 12:47:09 +00:00
};
2017-12-24 01:39:51 +00:00
buildInputs = [ curl ];
2015-08-18 12:47:09 +00:00
2017-12-24 01:39:51 +00:00
nativeBuildInputs = [ autoreconfHook ];
2015-08-18 12:47:09 +00:00
2017-12-24 01:39:51 +00:00
enableParallelBuilding = true;
2015-08-18 12:47:09 +00:00
2017-12-24 01:39:51 +00:00
meta = with stdenv.lib; {
description = "Small Footprint CIM Client Library";
homepage = https://sourceforge.net/projects/sblim/;
license = licenses.cpl10;
maintainers = with maintainers; [ deepfire ];
platforms = platforms.unix;
2015-08-18 12:47:09 +00:00
inherit version;
};
}