mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-22 14:45:27 +00:00
dotconf: update from 1.0.13 to 1.3 and adopt it
This commit is contained in:
parent
5853c2da91
commit
93c85b15d0
|
@ -1,18 +1,24 @@
|
||||||
{ fetchurl, stdenv }:
|
{ fetchFromGitHub, stdenv, autoconf, automake, libtool }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "dotconf-" + version;
|
name = "dotconf-" + version;
|
||||||
version = "1.0.13";
|
version = "1.3";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchFromGitHub {
|
||||||
url = "http://www.azzit.de/dotconf/download/v1.0/dotconf-1.0.13.tar.gz";
|
owner = "williamh";
|
||||||
sha256 = "0rcvi743jgnrq2p5gknnvsqiv47479y5gyc2g9pz7bp7v7bzlmc9";
|
repo = "dotconf";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "1sc95hw5k2xagpafny0v35filmcn05k1ds5ghkldfpf6xw4hakp7";
|
||||||
};
|
};
|
||||||
|
|
||||||
meta = {
|
buildInputs = [ autoconf automake libtool ];
|
||||||
description = "A configuration parser library";
|
|
||||||
|
|
||||||
|
preConfigure = "autoreconf --install";
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "A configuration parser library";
|
||||||
|
maintainers = with maintainers; [ pSub ];
|
||||||
homepage = http://www.azzit.de/dotconf/;
|
homepage = http://www.azzit.de/dotconf/;
|
||||||
license = stdenv.lib.licenses.lgpl21Plus;
|
license = licenses.lgpl21Plus;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue