repo.or.cz
/
NixPkgs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
hanko: add updateScript (#372233)
[NixPkgs.git]
/
pkgs
/
by-name
/
el
/
elvish
/
tests
/
expect-version.nix
blob
ee9b8ed3969ca82e7b7f007c1d2ae774dd13c307
1
{
2
stdenv,
3
elvish,
4
replaceVars,
5
}:
6
7
stdenv.mkDerivation {
8
pname = "elvish-simple-test";
9
inherit (elvish) version;
10
11
nativeBuildInputs = [ elvish ];
12
13
dontInstall = true;
14
15
buildCommand = ''
16
elvish ${
17
replaceVars ./expect-version.elv {
18
inherit (elvish) version;
19
}
20
}
21
22
touch $out
23
'';
24
25
meta.timeout = 10;
26
}