mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
31 lines
750 B
Nix
31 lines
750 B
Nix
{ 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;
|
|
};
|
|
}
|