summary refs log tree commit diff
path: root/pkgs/development/libraries/sblim-sfcc/default.nix
blob: 111b08b633a771c30e7f64306a06b5d2f7f46cfe (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
28
29
30
{ fetchgit, stdenv, autoconf, automake, libtool, curl }:

stdenv.mkDerivation rec {
  version = "2.2.9";
  name = "sblim-sfcc-${version}";

  src = fetchgit {
    url = "https://github.com/kkaempf/sblim-sfcc.git";
    rev = "f70fecb410a53531e4fe99d39cf81b581819cac9";
    sha256 = "1hsxim284qzldh599gf6khxj80g8q5263xl3lj3hdndxbhbs843v";
  };

  preConfigure = "./autoconfiscate.sh";

  buildInputs = [ autoconf automake libtool curl ];

  meta = {
    description = "Small Footprint CIM Client Library";

    homepage = http://sourceforge.net/projects/sblim/;

    maintainers = [ stdenv.lib.maintainers.deepfire ];

    license = stdenv.lib.licenses.cpl10;

    platforms = stdenv.lib.platforms.gnu;  # arbitrary choice

    inherit version;
  };
}