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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
455 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl }:
stdenv.mkDerivation rec {
2021-06-20 14:15:21 +00:00
pname = "tclap";
2021-12-06 15:20:54 +00:00
version = "1.2.5";
src = fetchurl {
2021-06-20 14:15:21 +00:00
url = "mirror://sourceforge/tclap/${pname}-${version}.tar.gz";
2021-12-06 15:20:54 +00:00
sha256 = "sha256-u2SfdtrjXo0Ny6S1Ks/U4GLXh+aoG0P3pLASdRUxZaY=";
};
meta = with lib; {
homepage = "http://tclap.sourceforge.net/";
description = "Templatized C++ Command Line Parser Library";
2018-10-27 13:43:09 +00:00
platforms = platforms.all;
license = licenses.mit;
};
}