nixpkgs/pkgs/development/libraries/geoip/default.nix
2014-01-21 20:25:52 +01:00

25 lines
408 B
Nix

a :
let
s = import ./src-for-default.nix;
buildInputs = with a; [
zlib
];
in
rec {
src = a.fetchUrlFromSrcInfo s;
inherit (s) name;
inherit buildInputs;
configureFlags = [];
/* doConfigure should be removed if not needed */
phaseNames = ["doConfigure" "doMakeInstall"];
meta = {
description = "Geolocation API";
maintainers = [
a.lib.maintainers.raskin
];
};
}