nixpkgs/pkgs/development/libraries/tclap/default.nix

18 lines
428 B
Nix
Raw Normal View History

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "tclap-1.2.2";
src = fetchurl {
url = "mirror://sourceforge/tclap/${name}.tar.gz";
sha256 = "0dsqvsgzam3mypj2ladn6v1yjq9zd47p3lg21jx6kz5azkkkn0gm";
};
2018-10-27 15:43:09 +02:00
meta = with stdenv.lib; {
homepage = http://tclap.sourceforge.net/;
description = "Templatized C++ Command Line Parser Library";
2018-10-27 15:43:09 +02:00
platforms = platforms.all;
license = licenses.mit;
};
}