initial nix channel
This commit is contained in:
parent
cce92912ff
commit
ab0ad44ba0
2 changed files with 15 additions and 0 deletions
8
my-package.nix
Normal file
8
my-package.nix
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
# my-package.nix
|
||||
{ stdenv }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "my-package";
|
||||
src = ./.;
|
||||
installPhase = "mkdir -p $out; echo 'Hello, Nix!' > $out/hello";
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue