about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/sblim-sfcc
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/libraries/sblim-sfcc')
-rw-r--r--nixpkgs/pkgs/development/libraries/sblim-sfcc/default.nix28
1 files changed, 28 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/libraries/sblim-sfcc/default.nix b/nixpkgs/pkgs/development/libraries/sblim-sfcc/default.nix
new file mode 100644
index 000000000000..ba0b8f4e996f
--- /dev/null
+++ b/nixpkgs/pkgs/development/libraries/sblim-sfcc/default.nix
@@ -0,0 +1,28 @@
+{ stdenv, fetchFromGitHub, autoreconfHook, curl }:
+
+stdenv.mkDerivation rec {
+  name = "sblim-sfcc-${version}";
+  version = "2.2.9"; # this is technically 2.2.9-preview
+
+  src = fetchFromGitHub {
+    owner  = "kkaempf";
+    repo   = "sblim-sfcc";
+    rev    = "514a76af2020fd6dc6fc380df76cbe27786a76a2";
+    sha256 = "06c1mskl9ixbf26v88w0lvn6v2xd6n5f0jd5mckqrn9j4vmh70hs";
+  };
+
+  buildInputs = [ curl ];
+
+  nativeBuildInputs = [ autoreconfHook ];
+
+  enableParallelBuilding = true;
+
+  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;
+    inherit version;
+  };
+}