mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 15:56:50 +01:00
60 lines
1.5 KiB
Nix
60 lines
1.5 KiB
Nix
{ stdenv, fetchFromGitHub, caddy, asciidoctor
|
|
, file, lessc, sass, multimarkdown }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "styx-${version}";
|
|
version = "0.5.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "styx-static";
|
|
repo = "styx";
|
|
rev = "v${version}";
|
|
sha256 = "0v36i40cwrajsd02xjfdldih5g493m28lhzgjg1gd3pwk2yd6rm1";
|
|
};
|
|
|
|
setSourceRoot = "cd styx-*/src; export sourceRoot=`pwd`";
|
|
|
|
server = "${caddy.bin}/bin/caddy";
|
|
|
|
nativeBuildInputs = [ asciidoctor ];
|
|
|
|
propagatedBuildInputs = [
|
|
file
|
|
lessc
|
|
sass
|
|
asciidoctor
|
|
multimarkdown
|
|
];
|
|
|
|
outputs = [ "out" "lib" ];
|
|
|
|
installPhase = ''
|
|
mkdir $out
|
|
install -D -m 777 styx.sh $out/bin/styx
|
|
|
|
mkdir -p $out/share/styx
|
|
cp -r scaffold $out/share/styx
|
|
cp builder.nix $out/share/styx
|
|
|
|
mkdir -p $out/share/doc/styx
|
|
asciidoctor doc/index.adoc -o $out/share/doc/styx/index.html
|
|
asciidoctor doc/styx-themes.adoc -o $out/share/doc/styx/styx-themes.html
|
|
cp -r doc/imgs $out/share/doc/styx/
|
|
|
|
substituteAllInPlace $out/bin/styx
|
|
substituteAllInPlace $out/share/doc/styx/index.html
|
|
substituteAllInPlace $out/share/doc/styx/styx-themes.html
|
|
|
|
mkdir $lib
|
|
cp -r lib/* $lib
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Nix based static site generator";
|
|
maintainers = with maintainers; [ ericsagnes ];
|
|
homepage = https://styx-static.github.io/styx-site/;
|
|
downloadPage = https://github.com/styx-static/styx/;
|
|
platforms = platforms.all;
|
|
license = licenses.mit;
|
|
};
|
|
}
|