2020-08-17 00:39:06 +00:00
|
|
|
|
{ stdenv, lib, fetchFromGitHub, python3, pandoc }:
|
2016-06-12 19:28:40 +00:00
|
|
|
|
|
2019-08-13 21:52:01 +00:00
|
|
|
|
stdenv.mkDerivation {
|
2019-08-15 12:41:18 +00:00
|
|
|
|
pname = "bgnet";
|
2020-08-17 00:39:06 +00:00
|
|
|
|
# to be found in the Makefile
|
|
|
|
|
version = "3.1.2";
|
2016-06-12 19:28:40 +00:00
|
|
|
|
|
2020-08-17 00:39:06 +00:00
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
|
owner = "beejjorgensen";
|
|
|
|
|
repo = "bgnet";
|
|
|
|
|
rev = "782a785a35d43c355951b8151628d7c64e4d0346";
|
|
|
|
|
sha256 = "19w0r3zr71ydd29amqwn8q3npgrpy5kkshyshyji2hw5hky6iy92";
|
2016-06-12 19:28:40 +00:00
|
|
|
|
};
|
|
|
|
|
|
2020-08-17 00:39:06 +00:00
|
|
|
|
buildPhase = ''
|
2016-06-12 19:28:40 +00:00
|
|
|
|
# build scripts need some love
|
2020-08-17 00:39:06 +00:00
|
|
|
|
patchShebangs bin/preproc
|
|
|
|
|
|
|
|
|
|
make -C src bgnet.html
|
2016-06-12 19:28:40 +00:00
|
|
|
|
'';
|
|
|
|
|
|
|
|
|
|
installPhase = ''
|
2020-08-17 00:39:06 +00:00
|
|
|
|
install -Dm644 src/bgnet.html $out/share/doc/bgnet/html/index.html
|
2016-06-12 19:28:40 +00:00
|
|
|
|
'';
|
|
|
|
|
|
2020-08-17 00:39:06 +00:00
|
|
|
|
nativeBuildInputs = [ python3 pandoc ];
|
|
|
|
|
|
2016-06-12 19:28:40 +00:00
|
|
|
|
meta = {
|
|
|
|
|
description = "Beej’s Guide to Network Programming";
|
2020-04-01 01:11:51 +00:00
|
|
|
|
homepage = "https://beej.us/guide/bgnet/";
|
2016-06-12 19:28:40 +00:00
|
|
|
|
license = lib.licenses.unfree;
|
|
|
|
|
|
2018-02-12 06:18:12 +00:00
|
|
|
|
maintainers = with lib.maintainers; [ Profpatsch ];
|
2016-06-12 19:28:40 +00:00
|
|
|
|
};
|
|
|
|
|
}
|