Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{
2 lib,
3 stdenv,
4 fetchurl,
5}:
6
7stdenv.mkDerivation rec {
8 pname = "tclap";
9 version = "1.2.5";
10
11 src = fetchurl {
12 url = "mirror://sourceforge/tclap/${pname}-${version}.tar.gz";
13 sha256 = "sha256-u2SfdtrjXo0Ny6S1Ks/U4GLXh+aoG0P3pLASdRUxZaY=";
14 };
15
16 meta = with lib; {
17 homepage = "https://tclap.sourceforge.net/";
18 description = "Templatized C++ Command Line Parser Library";
19 platforms = platforms.all;
20 license = licenses.mit;
21 };
22}