summary refs log tree commit diff
path: root/pkgs/development/libraries/libcutl/default.nix
blob: 81122a6eb520e68da994a864be5f498cd1809b08 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ stdenv, fetchurl, xercesc }:
let
    major = "1.9";
    minor = "0";
in
with stdenv; with lib;
mkDerivation rec {
  name = "libcutl-${major}.${minor}";

  meta = {
    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 = "https://codesynthesis.com/download/libcutl/1.9/${name}.tar.bz2";
    sha1 = "0e8d255145afbc339a3284ef85a43f4baf3fec43";
  };

  buildInputs = [ xercesc ];
}