daa459cc8a
Thanks to Peter Simons for preparing this. Make sure you have nixos 31132. svn path=/nixpkgs/trunk/; revision=31133
15 lines
296 B
Nix
15 lines
296 B
Nix
{stdenv, fetchurl}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "popt-1.16";
|
|
|
|
src = fetchurl {
|
|
url = "http://rpm5.org/files/popt/${name}.tar.gz";
|
|
sha256 = "1j2c61nn2n351nhj4d25mnf3vpiddcykq005w2h6kw79dwlysa77";
|
|
};
|
|
|
|
meta = {
|
|
description = "command line option parsing library";
|
|
};
|
|
}
|