feat: packages

This commit is contained in:
Philipp Hochkamp 2022-03-05 12:34:52 +01:00
parent 39f91ed113
commit 40f300f95a
7 changed files with 33 additions and 1 deletions

9
packages/scripts.nix Normal file
View file

@ -0,0 +1,9 @@
{ stdenv, ...}:
stdenv.mkDerivation {
name = "scripts";
src = ./scripts;
installPhase = ''
mkdir -p $out/bin
cp * $out/bin
'';
}