Skip to content

Instantly share code, notes, and snippets.

@liesnikov
Created June 29, 2022 17:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save liesnikov/dbd880a300adebb99fe5fcb95bedc054 to your computer and use it in GitHub Desktop.
Save liesnikov/dbd880a300adebb99fe5fcb95bedc054 to your computer and use it in GitHub Desktop.
Nix ghc Binary bug
let
defpkgs = builtins.fetchTarball {
# Descriptive name to make the store path easier to identify
name = "nixos-22.05.1271.babb041b716";
# Commit hash for nixos-unstable as of 2018-09-12
url = "https://releases.nixos.org/nixos/22.05-small/nixos-22.05.1271.babb041b716/nixexprs.tar.xz";
# Hash obtained using `nix-prefetch-url --unpack <url>`
sha256 = "0g8vwni83zn6kgkczrm5vwmyhl473rrs9d4k4hn5gfbgfsyv7ls8";
};
in
{ nixpkgs ? import defpkgs {} }:
let
src =
nixpkgs.fetchzip {
url = "https://github.com/lambdageek/unbound-generics/archive/a2a558058012b09bb313b3eb03cddb734fcf4a98.zip";
sha256 = "af4592a93d0d280591b3bcff3ebe244956cc3637bf20ed2315fb6b2e070caef4";
};
callghcBinary = nixpkgs.haskell.packages.ghc8107Binary.callCabal2nix;
callghc = nixpkgs.haskell.packages.ghc8107.callCabal2nix;
in callghcBinary "unbound-generics" src {} # this doesn't work
# in callghc "unbound-generics" src {} # this works
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment