nixpkgs/pkgs/development/libraries/libmcs/default.nix
John Ericson 531e4b80c9 misc pkgs: Basic sed to get fix pkgconfig and autoreconfHook buildInputs
Only acts on one-line dependency lists.
2017-09-21 15:49:53 -04:00

20 lines
578 B
Nix

{ stdenv, fetchurl, pkgconfig, libmowgli }:
stdenv.mkDerivation rec {
name = "libmcs-0.7.2";
src = fetchurl {
url = "http://distfiles.atheme.org/${name}.tbz2";
sha256 = "1knmgxrg2kxdlin8qyf6351943ldg8myllwf860af58x1wncxc74";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ libmowgli ];
meta = {
description = "A library and set of userland tools which abstract the storage of configuration settings away from userland applications";
homepage = http://www.atheme.org/projects/mcs.shtml;
platforms = stdenv.lib.platforms.unix;
};
}