nixpkgs/pkgs/applications/networking/firehol/iprange.nix
Alvar Penning 0a53c6b565 maintainers: rename geistesk to oxzi
For reasons I have renamed my GitHub account and would like to include
this name change here.
2020-08-15 16:03:46 +02:00

19 lines
491 B
Nix

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
pname = "iprange";
version = "1.0.4";
src = fetchurl {
url = "https://github.com/firehol/iprange/releases/download/v${version}/iprange-${version}.tar.xz";
sha256 = "0rymw4ydn09dng34q4g5111706fyppzs2gd5br76frgvfj4x2f71";
};
meta = with stdenv.lib; {
description = "manage IP ranges";
homepage = "https://github.com/firehol/iprange";
license = licenses.gpl2;
maintainers = with maintainers; [ oxzi ];
};
}