diff options
Diffstat (limited to 'users')
-rw-r--r-- | users/glittershark/xanthous/default.nix | 2 | ||||
-rw-r--r-- | users/glittershark/xanthous/haskell-overlay.nix | 49 | ||||
-rw-r--r-- | users/glittershark/xanthous/nixpkgs.nix | 12 | ||||
-rw-r--r-- | users/glittershark/xanthous/shell.nix | 17 |
4 files changed, 13 insertions, 67 deletions
diff --git a/users/glittershark/xanthous/default.nix b/users/glittershark/xanthous/default.nix index 4af535a34def..c4260fe258b1 100644 --- a/users/glittershark/xanthous/default.nix +++ b/users/glittershark/xanthous/default.nix @@ -16,6 +16,6 @@ let xanthous = (if failOnWarnings then pkgs.haskell.lib.failOnAllWarnings else id) ((pkgs.haskellPackages - .extend (import ./haskell-overlay.nix { inherit pkgs; }) + # .extend (import ./haskell-overlay.nix { inherit pkgs; }) ).callPackage (import ./pkg.nix { inherit pkgs; }) {}); in xanthous // { inherit hie; } diff --git a/users/glittershark/xanthous/haskell-overlay.nix b/users/glittershark/xanthous/haskell-overlay.nix deleted file mode 100644 index 86a35149820d..000000000000 --- a/users/glittershark/xanthous/haskell-overlay.nix +++ /dev/null @@ -1,49 +0,0 @@ -{ pkgs ? import ./nixpkgs.nix {} }: -self: super: with pkgs.haskell.lib; rec { - generic-arbitrary = appendPatch - super.generic-arbitrary - [ ./build/generic-arbitrary-export-garbitrary.patch ]; - - hgeometry = - appendPatch - (self.callHackageDirect { - pkg = "hgeometry"; - ver = "0.9.0.0"; - sha256 = "02hyvbqm57lr47w90vdgl71cfbd6lvwpqdid9fcnmxkdjbq4kv6b"; - } {}) [ ./build/hgeometry-fix-haddock.patch ]; - - hgeometry-combinatorial = - self.callHackageDirect { - pkg = "hgeometry-combinatorial"; - ver = "0.9.0.0"; - sha256 = "12k41wd9fd1y3jd5djwcpwg2s1cva87wh14i0m1yn49zax9wl740"; - } {}; - - vinyl = overrideSrc (markUnbroken super.vinyl) - rec { - src = pkgs.fetchzip { - url = "mirror://hackage/vinyl-${version}/vinyl-${version}.tar.gz"; - sha256 = "190ffrmm76fh8fi9afkcda2vldf89y7dxj10434h28mbpq55kgsx"; - }; - version = "0.12.0"; - }; - - comonad-extras = appendPatch (markUnbroken super.comonad-extras) - [ ./build/update-comonad-extras.patch ]; - - ghc-prof-flamegraph = overrideCabal super.ghc-prof-flamegraph (oldAttrs: rec { - version = "0.2.0.0"; - - src = pkgs.fetchFromGitHub { - owner = "fpco"; - repo = "ghc-prof-flamegraph"; - rev = "8edd3b4806adeb25a4d55bed51c3afcc8e7a8e14"; - sha256 = "1i05pw495y5n24s1313iip8njn1lkf22a89izvi19iw7qkx062hr"; - fetchSubmodules = true; - }; - - libraryHaskellDepends = oldAttrs.libraryHaskellDepends ++ [ - self.optparse-applicative - ]; - }); -} diff --git a/users/glittershark/xanthous/nixpkgs.nix b/users/glittershark/xanthous/nixpkgs.nix index 19bf2c59cedd..7d7c16440545 100644 --- a/users/glittershark/xanthous/nixpkgs.nix +++ b/users/glittershark/xanthous/nixpkgs.nix @@ -1,9 +1,3 @@ -let - inherit (import <nixpkgs> {}) fetchFromGitHub; - nixpkgs = fetchFromGitHub { - owner = "NixOS"; - repo = "nixpkgs-channels"; - rev = "54f385241e6649128ba963c10314942d73245479"; - sha256 = "0bd4v8v4xcdbaiaa59yqprnc6dkb9jv12mb0h5xz7b51687ygh9l"; - }; -in import nixpkgs +args: +let pkgs = (import ../../../. args).third_party; +in pkgs // { inherit pkgs; } diff --git a/users/glittershark/xanthous/shell.nix b/users/glittershark/xanthous/shell.nix index e062bf9ce15a..b78844c0eec6 100644 --- a/users/glittershark/xanthous/shell.nix +++ b/users/glittershark/xanthous/shell.nix @@ -1,16 +1,16 @@ -{ nixpkgs ? import ./nixpkgs.nix {}, compiler ? "ghc865", withHoogle ? true }: +{ nixpkgs ? import ./nixpkgs.nix {} +, pkgs ? nixpkgs.pkgs +, compiler ? "ghc865" +, withHoogle ? true +}: let - inherit (nixpkgs) pkgs; - - pkg = import ./pkg.nix { inherit nixpkgs; }; + pkg = import ./pkg.nix { inherit pkgs; }; packageSet = ( if compiler == "default" then pkgs.haskellPackages else pkgs.haskell.packages.${compiler} - ).override { - overrides = import ./haskell-overlay.nix { inherit nixpkgs; }; - }; + ); haskellPackages = ( if withHoogle @@ -18,7 +18,8 @@ let overrides = (self: super: { ghc = super.ghc // { withPackages = super.ghc.withHoogle; }; ghcWithPackages = self.ghc.withPackages; - } // (import ./haskell-overlay.nix { inherit nixpkgs; }) self super); + } // (import ../../../third_party/haskell_overlay { inherit pkgs; }) + self super); } else packageSet ); |