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

19 lines
489 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl }:
2017-09-08 22:29:12 +00:00
stdenv.mkDerivation rec {
pname = "iprange";
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 lib; {
2017-09-08 22:29:12 +00:00
description = "manage IP ranges";
homepage = "https://github.com/firehol/iprange";
2017-09-08 22:29:12 +00:00
license = licenses.gpl2;
maintainers = with maintainers; [ oxzi ];
2017-09-08 22:29:12 +00:00
};
}