biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / applications / networking / firehol / iprange.nix
blobd2504b73cc30190d56add1758bb226acd8dfe537
1 { lib, stdenv, fetchurl }:
3 stdenv.mkDerivation rec {
4   pname = "iprange";
5   version = "1.0.4";
7   src = fetchurl {
8     url = "https://github.com/firehol/iprange/releases/download/v${version}/iprange-${version}.tar.xz";
9     sha256 = "0rymw4ydn09dng34q4g5111706fyppzs2gd5br76frgvfj4x2f71";
10   };
12   meta = with lib; {
13     description = "manage IP ranges";
14     mainProgram = "iprange";
15     homepage = "https://github.com/firehol/iprange";
16     license = licenses.gpl2;
17     maintainers = with maintainers; [ oxzi ];
18   };