Pin to newer nixpkgs commit

This commit is contained in:
Luc Tielen 2019-12-08 11:55:28 +01:00
parent 044f8643cb
commit 9aceda4d00
No known key found for this signature in database
GPG Key ID: 30A4D06ACE9EBD3C
2 changed files with 6 additions and 5 deletions

View File

@ -12,6 +12,7 @@ hpkg.developPackage {
llvm-hs = super.llvm-hs.override (oa: {
llvm-config = pkgs.llvm_7;
});
llvm-hs-pretty = hlib.unmarkBroken super.llvm-hs-pretty;
};
modifier = drv: hlib.addBuildTools drv [
(import nix/llvm.nix {})

View File

@ -1,8 +1,8 @@
let
pinned = (import <nixpkgs> {}).fetchFromGitHub {
owner = "NixOS";
repo = "nixpkgs-channels";
rev = "ffc604e55790dbf575187738e1c3778231e8f5a9";
sha256 = "1kw37ab6abkrjn65zhh0jcnfb3bzk1p14d178sp8489kn9gxy12v";
commit = "2adf2d615cf8f6c6be49a0e54dc9ebf551dcf70f";
pinned = builtins.fetchTarball {
name = "nixpkgs-19.09";
url = "https://github.com/nixos/nixpkgs/archive/${commit}.tar.gz";
sha256 = "0w8zgj38di4ssw6s0bxdb9rgksqfszsa3304863xic4bzsvkql9b";
};
in import pinned {}