2010-07-30 00:25:42 +01:00
|
|
|
{stdenv, fetchurl}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-03-30 05:37:36 +01:00
|
|
|
name = "confuse-${version}";
|
|
|
|
version = "3.2.1";
|
2010-07-30 00:25:42 +01:00
|
|
|
src = fetchurl {
|
2018-03-30 05:37:36 +01:00
|
|
|
url = "https://github.com/martinh/libconfuse/releases/download/v${version}/${name}.tar.xz";
|
|
|
|
sha256 = "0pnjmlj9i0alp407qd7c0vq83sz7gpsjrbdgpcn4xvzjp9r35ii3";
|
2010-07-30 00:25:42 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://www.nongnu.org/confuse/;
|
|
|
|
description = "Configuration file parser library";
|
2014-12-20 23:00:35 +00:00
|
|
|
license = stdenv.lib.licenses.isc;
|
2016-08-02 18:50:55 +01:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2010-07-30 00:25:42 +01:00
|
|
|
};
|
|
|
|
}
|