mirror of
https://github.com/schmittlauch/nur-packages
synced 2025-06-05 22:39:54 +02:00
Initial commit
This commit is contained in:
commit
35ebdd5b7e
13 changed files with 287 additions and 0 deletions
9
pkgs/example-package/default.nix
Normal file
9
pkgs/example-package/default.nix
Normal file
|
@ -0,0 +1,9 @@
|
|||
{ stdenv }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "example-package-${version}";
|
||||
version = "1.0";
|
||||
src = ./.;
|
||||
buildPhase = "echo echo Hello World > example";
|
||||
installPhase = "install -Dm755 example $out";
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue