mirror of
https://github.com/beta-nu-theta-chi/bylaws.git
synced 2025-12-07 11:44:47 +00:00
13 lines
224 B
Nix
13 lines
224 B
Nix
{ src, stdenv, ... }:
|
|
stdenv.mkDerivation {
|
|
inherit src;
|
|
name = "GH-Action-builder";
|
|
buildInputs = [ ];
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/pdf
|
|
mkdir -p $out/site
|
|
mv *.pdf $out/pdf
|
|
mv * $out/site
|
|
'';
|
|
} |