about summary refs log tree commit diff
path: root/nixpkgs/pkgs/by-name/ha/haunt/tests/001-test-version.nix
blob: 726a7ac957133487c75c62da5b4d89211cb345d5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ lib
, stdenv
, haunt
}:

stdenv.mkDerivation {
  pname = "haunt-test-version";
  inherit (haunt) version;

  nativeBuildInputs = [ haunt ];

  dontInstall = true;

  buildCommand = ''
    haunt --version

    touch $out
  '';

  meta.timeout = 10;
}