2016-01-17 23:04:40 +00:00
|
|
|
{ fetchFromGitHub, stdenv, autoreconfHook }:
|
2011-02-10 19:23:27 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "dotconf-" + version;
|
2014-09-23 22:19:57 +01:00
|
|
|
version = "1.3";
|
2011-02-10 19:23:27 +00:00
|
|
|
|
2014-09-23 22:19:57 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "williamh";
|
|
|
|
repo = "dotconf";
|
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "1sc95hw5k2xagpafny0v35filmcn05k1ds5ghkldfpf6xw4hakp7";
|
2011-02-10 19:23:27 +00:00
|
|
|
};
|
|
|
|
|
2017-09-05 22:26:13 +01:00
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
|
|
buildInputs = [ ];
|
2011-02-10 19:23:27 +00:00
|
|
|
|
2014-09-23 22:19:57 +01:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A configuration parser library";
|
|
|
|
maintainers = with maintainers; [ pSub ];
|
2011-02-10 19:23:27 +00:00
|
|
|
homepage = http://www.azzit.de/dotconf/;
|
2014-09-23 22:19:57 +01:00
|
|
|
license = licenses.lgpl21Plus;
|
2016-08-02 18:50:55 +01:00
|
|
|
platforms = with platforms; unix;
|
2011-02-10 19:23:27 +00:00
|
|
|
};
|
|
|
|
}
|