mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
ea1cd70128
Also, drop unused zlib dependency and add some meta attributes.
20 lines
475 B
Nix
20 lines
475 B
Nix
{ stdenv, fetchurl }:
|
|
|
|
let version = "1.6.0"; in
|
|
|
|
stdenv.mkDerivation {
|
|
name = "geoip-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "http://geolite.maxmind.com/download/geoip/api/c/GeoIP-${version}.tar.gz";
|
|
sha256 = "0dd6si4cvip73kxdn43apg6yygvaf7dnk5awqfg9w2fd2ll0qnh7";
|
|
};
|
|
|
|
meta = {
|
|
description = "Geolocation API";
|
|
maintainers = [ stdenv.lib.maintainers.raskin ];
|
|
license = stdenv.lib.licenses.lgpl21;
|
|
platforms = stdenv.lib.platforms.linux;
|
|
};
|
|
}
|