nixpkgs/pkgs/tools/networking/sipcalc/default.nix
Vladimír Čunát 2e6bf42a22
Merge branch 'master' into staging-next
There ver very many conflicts, basically all due to
name -> pname+version.  Fortunately, almost everything was auto-resolved
by kdiff3, and for now I just fixed up a couple evaluation problems,
as verified by the tarball job.  There might be some fallback to these
conflicts, but I believe it should be minimal.

Hydra nixpkgs: ?compare=1538299
2019-08-24 08:55:37 +02:00

20 lines
547 B
Nix

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
pname = "sipcalc";
version = "1.1.6";
src = fetchurl {
url = "http://www.routemeister.net/projects/sipcalc/files/${pname}-${version}.tar.gz";
sha256 = "cfd476c667f7a119e49eb5fe8adcfb9d2339bc2e0d4d01a1d64b7c229be56357";
};
meta = with stdenv.lib; {
description = "Advanced console ip subnet calculator";
homepage = http://www.routemeister.net/projects/sipcalc/;
license = licenses.bsd3;
platforms = platforms.all;
maintainers = [ maintainers.globin ];
};
}