mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
18 lines
428 B
Nix
18 lines
428 B
Nix
{ stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "tclap-1.2.2";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/tclap/${name}.tar.gz";
|
|
sha256 = "0dsqvsgzam3mypj2ladn6v1yjq9zd47p3lg21jx6kz5azkkkn0gm";
|
|
};
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = http://tclap.sourceforge.net/;
|
|
description = "Templatized C++ Command Line Parser Library";
|
|
platforms = platforms.all;
|
|
license = licenses.mit;
|
|
};
|
|
}
|