nixpkgs-suyu/pkgs/data/documentation/scheme-manpages/default.nix

29 lines
685 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub }:
2020-05-16 11:20:00 +02:00
stdenv.mkDerivation rec {
pname = "scheme-manpages-unstable";
version = "2021-03-11";
2020-05-16 11:20:00 +02:00
src = fetchFromGitHub {
owner = "schemedoc";
repo = "manpages";
rev = "d0163a4e29d29b2f0beb762be4095775134f5ef9";
sha256 = "0a8f7rq458c7985chwn1qb9yxcwyr0hl39r9vlvm5j687hy3igs2";
2020-05-16 11:20:00 +02:00
};
dontBuild = true;
installPhase = ''
mkdir -p $out/share/man
cp -r man3/ man7/ $out/share/man/
'';
meta = with lib; {
description = "Unix manual pages for R6RS and R7RS";
homepage = "https://github.com/schemedoc/manpages";
2020-05-16 11:20:00 +02:00
license = licenses.mit;
maintainers = [ maintainers.marsam ];
platforms = platforms.all;
};
}