18 lines
204 B
Nix
18 lines
204 B
Nix
{
|
|
stdenv
|
|
}:
|
|
|
|
{
|
|
hello = stdenv.mkDerivation rec {
|
|
name = "dummy";
|
|
|
|
src = null;
|
|
dontUnpack = true;
|
|
|
|
buildPhase = ''
|
|
ls -l /
|
|
echo "${stdenv}"
|
|
'';
|
|
};
|
|
}
|