nixpkgs/pkgs/data/documentation/bgnet/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

36 lines
826 B
Nix
Raw Normal View History

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