mirror of
https://github.com/beta-nu-theta-chi/branding.git
synced 2025-12-07 11:04:46 +00:00
18 lines
322 B
Nix
18 lines
322 B
Nix
{ stdenv, imagemagick, envsubst, python3Full, zip, ... }:
|
|
stdenv.mkDerivation {
|
|
pname = "BetaNuBranding";
|
|
version = "1.0.0";
|
|
|
|
src = ./src;
|
|
|
|
nativeBuildInputs = [ imagemagick envsubst python3Full zip ];
|
|
|
|
buildPhase = ''
|
|
python build.py
|
|
'';
|
|
|
|
installPhase = ''
|
|
mkdir -p $out
|
|
cp -r out/* $out
|
|
'';
|
|
} |