Skip to content
Snippets Groups Projects
Unverified Commit e48fb3fd authored by Jean-Paul Calderone's avatar Jean-Paul Calderone Committed by GitHub
Browse files

Merge pull request #50 from PrivateStorageio/pin-haskellnix-leasereport

Pin haskell.nix in LeaseReport
parents e3b293ac 0bd1b19f
No related branches found
No related tags found
No related merge requests found
{ callPackage }: { callPackage }:
let let
leasereport = import ./leasereport-repo.nix; leasereport = import ./leasereport-repo.nix;
# Pin a particular version of haskell.nix. The particular version isn't
# special. It's just recent at the time this expression was written and it
# is known to work with LeaseReport. It could be bumped if necessary but
# this would probably only happen as a result of bumping the resolver in
# stack.yaml.
haskellNixSrc = builtins.fetchTarball https://github.com/input-output-hk/haskell.nix/archive/f6663a8449f5e4a7393aa24601600c8f6e352c97.tar.gz;
in in
(callPackage "${leasereport}/nix" { }).LeaseReport.components.exes.LeaseReport (callPackage "${leasereport}/nix" { inherit haskellNixSrc; }).LeaseReport.components.exes.LeaseReport
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment