build: init at 0.0.1
This commit is contained in:
commit
83dac23575
6 changed files with 56 additions and 0 deletions
12
default.nix
Normal file
12
default.nix
Normal file
|
@ -0,0 +1,12 @@
|
|||
{ stdenv, ... }:
|
||||
let
|
||||
name = "rrv.sh";
|
||||
version = "0.0.1";
|
||||
in
|
||||
stdenv.mkDerivation {
|
||||
inherit name version;
|
||||
src = ./src;
|
||||
installPhase = ''
|
||||
cp -r . $out
|
||||
'';
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue