2024-07-27 06:49:29 +00:00
|
|
|
{ stdenv
|
2023-10-09 19:29:22 +00:00
|
|
|
, 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;
|
|
|
|
}
|