21 lines
250 B
Nix
21 lines
250 B
Nix
{
|
|
stdenv,
|
|
haunt,
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "haunt-test-version";
|
|
inherit (haunt) version;
|
|
|
|
nativeBuildInputs = [ haunt ];
|
|
|
|
dontInstall = true;
|
|
|
|
buildCommand = ''
|
|
haunt --version
|
|
|
|
touch $out
|
|
'';
|
|
|
|
meta.timeout = 10;
|
|
}
|