mirror of
https://github.com/FliegendeWurst/nur-packages.git
synced 2024-11-08 18:30:38 +00:00
10 lines
210 B
Nix
10 lines
210 B
Nix
{ stdenv }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "example-package-${version}";
|
|
version = "1.0";
|
|
src = ./.;
|
|
buildPhase = "echo echo Hello World > example";
|
|
installPhase = "install -Dm755 example $out";
|
|
}
|