nixpkgs/pkgs/tools/networking/stun/default.nix
Profpatsch 4a7f99d55d treewide: with stdenv.lib; in meta -> with lib;
Part of: https://github.com/NixOS/nixpkgs/issues/108938

meta = with stdenv.lib;

is a widely used pattern. We want to slowly remove
the `stdenv.lib` indirection and encourage people
to use `lib` directly. Thus let’s start with the meta
field.

This used a rewriting script to mostly automatically
replace all occurances of this pattern, and add the
`lib` argument to the package header if it doesn’t
exist yet.

The script in its current form is available at
https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
2021-01-11 10:38:22 +01:00

42 lines
1.1 KiB
Nix

{ lib, stdenv, fetchurl }:
stdenv.mkDerivation rec {
pname = "stun";
version = "0.97";
src = fetchurl {
url = "mirror://sourceforge/${pname}/stund-${version}.tgz";
sha256 = "1mxirnnqfqdwb9x8hfjjsscp6lx3468ph6ddx32l94ir46fbzqc3";
};
srcManpages = fetchurl {
url = "mirror://ubuntu/pool/universe/s/stun/stun_0.97~dfsg-2.debian.tar.xz";
name = "stun-debian.tar.xz";
sha256 = "1pr6zrdhia0aafsvywl1hrhlgl00vahp63bw1z2mzvdxri7q88f0";
};
outputs = [ "out" "server" ];
preBuild = ''
tar Jxvf ${srcManpages} debian/manpages
gzip -9n debian/manpages/stun.1
gzip -9n debian/manpages/stund.8
'';
installPhase = ''
mkdir -p $out/bin $server/bin $out/man/man1 $server/man/man8
cp -v client $out/bin/stun
cp -v server $server/bin/stund
cp -v debian/manpages/stun.1.gz $out/man/man1
cp -v debian/manpages/stund.8.gz $server/man/man8
'';
meta = with lib; {
description = "Stun server and test client";
homepage = "https://sourceforge.net/projects/stun/";
license = licenses.vsl10;
maintainers = with maintainers; [ marcweber obadz ];
platforms = platforms.linux;
};
}