9 lines
164 B
Nix
9 lines
164 B
Nix
{ stdenv, name, source }:
|
|
stdenv.mkDerivation rec {
|
|
inherit name;
|
|
phases = [ "installPhase" ];
|
|
installPhase = ''
|
|
cp -R ${source} $out
|
|
'';
|
|
}
|