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
acr-cli: init at 0.14 (#359508)
[NixPkgs.git]
/
pkgs
/
by-name
/
ra
/
ratchet
/
tests.nix
blob
75ae285d734e34601543fce4f99eea649385664f
1
{
2
runCommand,
3
ratchet,
4
}: let
5
inherit (ratchet) pname version;
6
in
7
runCommand "${pname}-tests" {meta.timeout = 60;}
8
''
9
set -euo pipefail
10
11
# Ensure ratchet is executable
12
${ratchet}/bin/ratchet --version
13
${ratchet}/bin/ratchet --help
14
15
touch $out
16
''