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
pytrainer: unpin python 3.10
[NixPkgs.git]
/
pkgs
/
by-name
/
el
/
elvish
/
tests
/
expect-version.nix
blob
b7935ceea6710b5312af685242cd0fee65d46c9f
1
{ stdenv
2
, elvish
3
, substituteAll
4
}:
5
6
stdenv.mkDerivation {
7
pname = "elvish-simple-test";
8
inherit (elvish) version;
9
10
nativeBuildInputs = [ elvish ];
11
12
dontInstall = true;
13
14
buildCommand = ''
15
elvish ${substituteAll {
16
src = ./expect-version.elv;
17
inherit (elvish) version;
18
}}
19
20
touch $out
21
'';
22
23
meta.timeout = 10;
24
}