summary refs log tree commit diff
path: root/pkgs/development/libraries/sblim-sfcc/default.nix
blob: 351eb5c154794cf0ad1264192dcabc7bb2632300 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ lib, stdenv, fetchFromGitHub, autoreconfHook, curl }:

stdenv.mkDerivation rec {
  pname = "sblim-sfcc";
  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 lib; {
    description = "Small Footprint CIM Client Library";
    homepage    = "https://sourceforge.net/projects/sblim/";
    license     = licenses.cpl10;
    maintainers = with maintainers; [ deepfire ];
    platforms   = platforms.unix;
  };
}