3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/data/documentation/scheme-manpages/default.nix

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

29 lines
684 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub }:
2020-05-16 10:20:00 +01:00
stdenv.mkDerivation rec {
pname = "scheme-manpages";
version = "unstable-2022-07-04";
2020-05-16 10:20:00 +01:00
src = fetchFromGitHub {
owner = "schemedoc";
repo = "manpages";
rev = "0b95de112857b185b83141ac9324fb0e786c56df";
sha256 = "sha256-HWkZJd4t7gsbbSGiQ92Lav9EMBPMLXmXFT6HVfyFLSI=";
2020-05-16 10:20:00 +01: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 10:20:00 +01:00
license = licenses.mit;
maintainers = [ maintainers.marsam ];
platforms = platforms.all;
};
}