fork
Configure Feed
Select the types of activity you want to include in your feed.
nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
fork
Configure Feed
Select the types of activity you want to include in your feed.
1{stdenv, fetchurl, xercesc }:
2with stdenv; with lib;
3mkDerivation 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}