libcutl: init -> 1.9.0
This commit is contained in:
parent
a7b7ac8bfb
commit
5b8e6aaa21
21
pkgs/development/libraries/libcutl/default.nix
Normal file
21
pkgs/development/libraries/libcutl/default.nix
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
{stdenv, fetchurl, xercesc }:
|
||||||
|
with stdenv; with lib;
|
||||||
|
mkDerivation rec {
|
||||||
|
name = "libcutl-${meta.major}.${meta.minor}";
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
major = "1.9";
|
||||||
|
minor = "0";
|
||||||
|
description = "A collection of generic and independent components such as meta-programming tests, smart pointers, containers, compiler building blocks" ;
|
||||||
|
platforms = platforms.all;
|
||||||
|
maintainers = with maintainers; [ ];
|
||||||
|
license = licenses.mit;
|
||||||
|
};
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "http://codesynthesis.com/download/libcutl/1.9/${name}.tar.bz2";
|
||||||
|
sha1 = "0e8d255145afbc339a3284ef85a43f4baf3fec43";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ xercesc ];
|
||||||
|
}
|
@ -7147,6 +7147,8 @@ let
|
|||||||
|
|
||||||
libcue = callPackage ../development/libraries/libcue { };
|
libcue = callPackage ../development/libraries/libcue { };
|
||||||
|
|
||||||
|
libcutl = callPackage ../development/libraries/libcutl { };
|
||||||
|
|
||||||
libdaemon = callPackage ../development/libraries/libdaemon { };
|
libdaemon = callPackage ../development/libraries/libdaemon { };
|
||||||
|
|
||||||
libdbi = callPackage ../development/libraries/libdbi { };
|
libdbi = callPackage ../development/libraries/libdbi { };
|
||||||
|
Loading…
Reference in New Issue
Block a user