mirror of
https://github.com/beta-nu-theta-chi/bylaws.git
synced 2025-12-07 11:44:47 +00:00
13 lines
229 B
Nix
Executable File
13 lines
229 B
Nix
Executable File
{ stdenv, branding, ... }:
|
|
stdenv.mkDerivation {
|
|
pname = "BetaNuLBL-source";
|
|
version = "0.0.1";
|
|
|
|
src = ./src;
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/branding
|
|
cp -r * .* $out
|
|
cp -r ${branding}/* $out/branding
|
|
'';
|
|
} |