mirror of
https://github.com/beta-nu-theta-chi/bylaws.git
synced 2025-12-07 11:44:47 +00:00
13 lines
257 B
Nix
Executable File
13 lines
257 B
Nix
Executable File
{ src, stdenv, gnutar, ... }:
|
|
stdenv.mkDerivation {
|
|
inherit src;
|
|
pname = "GH-Action-builder";
|
|
version = "0.0.1";
|
|
nativeBuildInputs = [ gnutar ];
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/pdf
|
|
mv *.pdf $out/pdf
|
|
tar -czf $out/site.tar.gz *
|
|
'';
|
|
} |