nixpkgs/pkgs/applications/networking/firehol/iprange.nix

19 lines
503 B
Nix
Raw Normal View History

2017-09-08 22:29:12 +00:00
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "iprange-${version}";
2017-10-21 12:09:33 +00:00
version = "1.0.4";
2017-09-08 22:29:12 +00:00
src = fetchurl {
url = "https://github.com/firehol/iprange/releases/download/v${version}/iprange-${version}.tar.xz";
2017-10-21 12:09:33 +00:00
sha256 = "0rymw4ydn09dng34q4g5111706fyppzs2gd5br76frgvfj4x2f71";
2017-09-08 22:29:12 +00:00
};
meta = with stdenv.lib; {
description = "manage IP ranges";
homepage = https://github.com/firehol/iprange;
license = licenses.gpl2;
maintainers = with maintainers; [ geistesk ];
};
}