lol

Merge pull request #12751 from leenaars/libcutl

libcutl: init -> 1.9.0

+23
+21
pkgs/development/libraries/libcutl/default.nix
··· 1 + {stdenv, fetchurl, xercesc }: 2 + with stdenv; with lib; 3 + mkDerivation rec { 4 + name = "libcutl-${meta.major}.${meta.minor}"; 5 + 6 + meta = { 7 + major = "1.9"; 8 + minor = "0"; 9 + description = "A collection of generic and independent components such as meta-programming tests, smart pointers, containers, compiler building blocks" ; 10 + platforms = platforms.all; 11 + maintainers = with maintainers; [ ]; 12 + license = licenses.mit; 13 + }; 14 + 15 + src = fetchurl { 16 + url = "http://codesynthesis.com/download/libcutl/1.9/${name}.tar.bz2"; 17 + sha1 = "0e8d255145afbc339a3284ef85a43f4baf3fec43"; 18 + }; 19 + 20 + buildInputs = [ xercesc ]; 21 + }
+2
pkgs/top-level/all-packages.nix
··· 7145 7145 7146 7146 libcue = callPackage ../development/libraries/libcue { }; 7147 7147 7148 + libcutl = callPackage ../development/libraries/libcutl { }; 7149 + 7148 7150 libdaemon = callPackage ../development/libraries/libdaemon { }; 7149 7151 7150 7152 libdbi = callPackage ../development/libraries/libdbi { };