Add tclap (required for new hugin)

svn path=/nixpkgs/trunk/; revision=32169
This commit is contained in:
Yury G. Kudryashov
2012-02-10 10:13:34 +00:00
parent f77fa09f56
commit f8d0599756
2 changed files with 18 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "tclap-1.2.1";
src = fetchurl {
url = "mirror://sourceforge/tclap/${name}.tar.gz";
sha256 = "1fzf7l1wvlhxnpwi15jvvfizn836s7r0r8vckgbqk2lyf7ihz7wz";
};
meta = {
homepage = http://tclap.sourceforge.net/;
description = "Templatized C++ Command Line Parser Library";
platforms = stdenv.lib.platforms.all;
};
}