summary refs log tree commit diff
path: root/pkgs/development/libraries/confuse/default.nix
blob: e11e0ae0a1c8d07f1073997579002fb7bec35beb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{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;
  };
}