nixpkgs/pkgs/development/libraries/geoip/default.nix
2009-08-26 11:13:36 +00:00

26 lines
445 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"];
goSrcDir = "cd GeoIP-*/";
meta = {
description = "Geolocation API";
maintainers = [
a.lib.maintainers.raskin
];
};
}