nixpkgs/pkgs/development/libraries/confuse/default.nix
Lluís Batlle i Rossell 8eceafc755 Fixing the name of 'confuse'; now it includes the version.
svn path=/nixpkgs/trunk/; revision=22829
2010-07-30 17:42:52 +00:00

16 lines
378 B
Nix

{stdenv, fetchurl}:
stdenv.mkDerivation rec {
name = "confuse-2.7";
src = fetchurl {
url = "http://savannah.nongnu.org/download/confuse/${name}.tar.gz";
sha256 = "0y47r2ashz44wvnxdb18ivpmj8nxhw3y9bf7v9w0g5byhgyp89g3";
};
meta = {
homepage = http://www.nongnu.org/confuse/;
description = "Configuration file parser library";
license = "BSD";
};
}