mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-01 19:33:03 +00:00
10b771c61a
This will make it easier to add all haskell related tests to the haskell hydra jobset without updating a list of tests in two places.
18 lines
417 B
Nix
18 lines
417 B
Nix
{ pkgs, haskellPackages }:
|
|
|
|
let
|
|
drv = haskellPackages.vector;
|
|
docs = pkgs.haskell.lib.documentationTarball drv;
|
|
|
|
in pkgs.runCommand "test haskell.lib.documentationTarball" { } ''
|
|
tar xvzf "${docs}/${drv.name}-docs.tar.gz"
|
|
|
|
# Check for Haddock html
|
|
find "${drv.name}-docs" | grep -q "Data-Vector.html"
|
|
|
|
# Check for source html
|
|
find "${drv.name}-docs" | grep -q "src/Data.Vector.html"
|
|
|
|
touch "$out"
|
|
''
|