mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 05:00:16 +00:00
sblim-sfcc init at 2.2.9
This commit is contained in:
parent
61be6847c0
commit
90f40408c8
30
pkgs/development/libraries/sblim-sfcc/default.nix
Normal file
30
pkgs/development/libraries/sblim-sfcc/default.nix
Normal file
|
@ -0,0 +1,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 = "1dlhjvi888kz3bq56n0f86f25ny48a18rm4rgb4rx04aimas3dvj";
|
||||
};
|
||||
|
||||
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;
|
||||
};
|
||||
}
|
|
@ -8102,6 +8102,8 @@ let
|
|||
|
||||
SDL2_ttf = callPackage ../development/libraries/SDL2_ttf { };
|
||||
|
||||
sblim-sfcc = callPackage ../development/libraries/sblim-sfcc {};
|
||||
|
||||
serd = callPackage ../development/libraries/serd {};
|
||||
|
||||
serf = callPackage ../development/libraries/serf {};
|
||||
|
|
Loading…
Reference in a new issue