f34ce41345
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
16 lines
278 B
Nix
16 lines
278 B
Nix
{
|
|
runCommand,
|
|
ratchet,
|
|
}: let
|
|
inherit (ratchet) pname version;
|
|
in
|
|
runCommand "${pname}-tests" {meta.timeout = 60;}
|
|
''
|
|
set -euo pipefail
|
|
|
|
# Ensure ratchet is executable
|
|
${ratchet}/bin/ratchet --version
|
|
${ratchet}/bin/ratchet --help
|
|
|
|
touch $out
|
|
''
|