mirror of
https://github.com/haskell-nix/hnix-store.git
synced 2024-12-13 15:46:26 +03:00
10 lines
261 B
Nix
10 lines
261 B
Nix
pkgs: hlib: helf: huper: {
|
|
hnix-store-remote =
|
|
( helf.callCabal2nixWithOptions "hnix-store-remote" ./hnix-store-remote "-fio-testsuite" { }
|
|
).overrideAttrs (attrs: {
|
|
buildInputs = attrs.buildInputs ++ [
|
|
pkgs.nix
|
|
];
|
|
});
|
|
}
|