f34ce41345
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
24 lines
347 B
Nix
24 lines
347 B
Nix
{ stdenv
|
|
, elvish
|
|
, substituteAll
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "elvish-simple-test";
|
|
inherit (elvish) version;
|
|
|
|
nativeBuildInputs = [ elvish ];
|
|
|
|
dontInstall = true;
|
|
|
|
buildCommand = ''
|
|
elvish ${substituteAll {
|
|
src = ./expect-version.elv;
|
|
inherit (elvish) version;
|
|
}}
|
|
|
|
touch $out
|
|
'';
|
|
|
|
meta.timeout = 10;
|
|
}
|