nixpkgs/pkgs/development/libraries/dotconf/default.nix
Tuomas Tynkkynen 21f17d69f6 treewide: Add lots of meta.platforms
Build-tested on x86_64 Linux & Mac.
2016-08-02 21:42:43 +03:00

24 lines
583 B
Nix

{ fetchFromGitHub, stdenv, autoreconfHook }:
stdenv.mkDerivation rec {
name = "dotconf-" + version;
version = "1.3";
src = fetchFromGitHub {
owner = "williamh";
repo = "dotconf";
rev = "v${version}";
sha256 = "1sc95hw5k2xagpafny0v35filmcn05k1ds5ghkldfpf6xw4hakp7";
};
buildInputs = [ autoreconfHook ];
meta = with stdenv.lib; {
description = "A configuration parser library";
maintainers = with maintainers; [ pSub ];
homepage = http://www.azzit.de/dotconf/;
license = licenses.lgpl21Plus;
platforms = with platforms; unix;
};
}