nixpkgs/pkgs/development/libraries/tclap/default.nix
Ryan Mulligan 539ede7650 tclap: 1.2.1 -> 1.2.2
Semi-automatic update. These checks were performed:

- built on NixOS
- found 1.2.2 with grep in /nix/store/91iz6pnbmjn0lc0f6iyy22wavngbbxhm-tclap-1.2.2
- found 1.2.2 in filename of file in /nix/store/91iz6pnbmjn0lc0f6iyy22wavngbbxhm-tclap-1.2.2
2018-02-28 12:25:07 +01:00

17 lines
394 B
Nix

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