mirror of
https://github.com/haskell-nix/hnix-store.git
synced 2025-01-05 19:00:24 +03:00
5d03ffc43c
This properly fixes the use of the tasty-discover, the report & info were sent upstream to fix it in docs: https://github.com/haskell-works/tasty-discover/issues/4. Closes: #129
12 lines
343 B
Nix
12 lines
343 B
Nix
pkgs: hlib: helf: huper: {
|
|
hnix-store-core =
|
|
helf.callCabal2nix "hnix-store-core" ./hnix-store-core {};
|
|
hnix-store-remote =
|
|
( helf.callCabal2nixWithOptions "hnix-store-remote" ./hnix-store-remote "-fio-testsuite" {}
|
|
).overrideAttrs (attrs: {
|
|
buildInputs = attrs.buildInputs ++ [
|
|
pkgs.nix
|
|
];
|
|
});
|
|
}
|