mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
16 lines
360 B
Nix
16 lines
360 B
Nix
{stdenv, fetchurl}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "confuse-2.7";
|
|
src = fetchurl {
|
|
url = "mirror://savannah/confuse/${name}.tar.gz";
|
|
sha256 = "0y47r2ashz44wvnxdb18ivpmj8nxhw3y9bf7v9w0g5byhgyp89g3";
|
|
};
|
|
|
|
meta = {
|
|
homepage = http://www.nongnu.org/confuse/;
|
|
description = "Configuration file parser library";
|
|
license = "BSD";
|
|
};
|
|
}
|