nixpkgs/pkgs/data/documentation/bgnet/default.nix
Profpatsch 53e790e7a8 maintainers: capitalize the Profpatsch attribute (vanity)
Since I’m already at it, this has been bothering me for a while.
2018-02-12 07:24:50 +01:00

33 lines
708 B
Nix
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{ stdenv, lib, fetchurl, python, zip, fop }:
stdenv.mkDerivation rec {
name = "bgnet-${version}";
version = "3.0.21";
src = fetchurl {
url = https://beej.us/guide/bgnet/bgnet.tgz;
sha256 = "00ggr5prc5i3w9gaaw2sadfq6haq7lmh0vdilaxx8xz9z5znxvyv";
};
buildInputs = [ python zip fop ];
preBuild = ''
sed -i "s/#disable=1/disable=1/" bin/bgvalidate
# build scripts need some love
patchShebangs .
'';
installPhase = ''
mkdir -p $out
mv * $out/
'';
meta = {
description = "Beejs Guide to Network Programming";
homepage = https://beej.us/guide/bgnet/;
license = lib.licenses.unfree;
maintainers = with lib.maintainers; [ Profpatsch ];
};
}