21f17d69f6
Build-tested on x86_64 Linux & Mac.
17 lines
421 B
Nix
17 lines
421 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 = stdenv.lib.licenses.isc;
|
|
platforms = stdenv.lib.platforms.unix;
|
|
};
|
|
}
|