Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
25 lines
583 B
Nix
25 lines
583 B
Nix
{
|
|
lib,
|
|
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 lib; {
|
|
description = "Advanced console ip subnet calculator";
|
|
homepage = "http://www.routemeister.net/projects/sipcalc/";
|
|
license = licenses.bsd3;
|
|
platforms = platforms.all;
|
|
maintainers = [ maintainers.globin ];
|
|
mainProgram = "sipcalc";
|
|
};
|
|
}
|