5e7c2d6cef
GitOrigin-RevId: f99e5f03cc0aa231ab5950a15ed02afec45ed51a
25 lines
353 B
Nix
25 lines
353 B
Nix
{ lib
|
|
, 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;
|
|
}
|