diff options
author | Gregor Kleen <gkleen@yggdrasil.li> | 2018-04-21 13:19:42 +0200 |
---|---|---|
committer | Gregor Kleen <gkleen@yggdrasil.li> | 2018-04-21 13:19:42 +0200 |
commit | a0f300bcc503457a2ebeb380e800617e608653eb (patch) | |
tree | 0ddd677f4daaee8e9ab482783e4f6009b6fbee85 | |
parent | 488b5f120cd4ada097963e85c2dfad682aae098e (diff) | |
download | nixos-a0f300bcc503457a2ebeb380e800617e608653eb.tar nixos-a0f300bcc503457a2ebeb380e800617e608653eb.tar.gz nixos-a0f300bcc503457a2ebeb380e800617e608653eb.tar.bz2 nixos-a0f300bcc503457a2ebeb380e800617e608653eb.tar.xz nixos-a0f300bcc503457a2ebeb380e800617e608653eb.zip |
…
-rw-r--r-- | bragi.nix | 16 |
1 files changed, 8 insertions, 8 deletions
@@ -86,26 +86,26 @@ in rec { | |||
86 | 86 | ||
87 | nixpkgs.config = { | 87 | nixpkgs.config = { |
88 | overlays = [ | 88 | overlays = [ |
89 | (selfPkgs: superPkgs: with superPkgs; { | 89 | (selfPkgs: superPkgs: { |
90 | haskellPackages = haskellPackages.override { | 90 | haskellPackages = haskellPackages.override { |
91 | overrides = self: super: with self; { | 91 | overrides = selfH: superH: { |
92 | encoding = haskell.lib.overrideCabal encoding ( oldAttrs: { | 92 | encoding = superPkgs.haskell.lib.overrideCabal encoding ( oldAttrs: { |
93 | src = fetchFromGitHub { owner = "pngwjpgh"; repo = "encoding"; rev = "extended-version-bounds"; sha256 = "0pzxixp384a1ywzj56pl7xc4ln7i9x6mq8spqjwcs80y0pgfpp9s"; }; | 93 | src = fetchFromGitHub { owner = "pngwjpgh"; repo = "encoding"; rev = "extended-version-bounds"; sha256 = "0pzxixp384a1ywzj56pl7xc4ln7i9x6mq8spqjwcs80y0pgfpp9s"; }; |
94 | }); | 94 | }); |
95 | inherit | 95 | inherit |
96 | (lib.mapAttrs (name: haskell.lib.dontCheck) super) | 96 | (lib.mapAttrs (name: superPkgs.haskell.lib.dontCheck) superH) |
97 | Glob filelock hedgehog; | 97 | Glob filelock hedgehog; |
98 | inherit | 98 | inherit |
99 | (callPackage ./custom/thermoprint { inherit runCommand makeWrapper; extraPackages = (p: with p; [ persistent-postgresql ]); }) | 99 | (selfH.callPackage ./custom/thermoprint { inherit runCommand makeWrapper; extraPackages = (p: with p; [ persistent-postgresql ]); }) |
100 | thermoprint-spec thermoprint-bbcode thermoprint-client thermoprint-server thermoprint-webgui tprint bbcode; | 100 | thermoprint-spec thermoprint-bbcode thermoprint-client thermoprint-server thermoprint-webgui tprint bbcode; |
101 | }; | 101 | }; |
102 | }; | 102 | }; |
103 | 103 | ||
104 | jack2Full = jack2Full.override { dbus = null; }; | 104 | jack2Full = superPkgs.jack2Full.override { dbus = null; }; |
105 | 105 | ||
106 | mpd = mpd.override { gmeSupport = false; pulseaudioSupport = false; }; | 106 | mpd = superPkgs.mpd.override { gmeSupport = false; pulseaudioSupport = false; }; |
107 | 107 | ||
108 | inherit (pkgs.haskellPackages) thermoprint-server thermoprint-client thermoprint-webgui tprint; | 108 | inherit (selfPkgs.haskellPackages) thermoprint-server thermoprint-webgui tprint; |
109 | }) | 109 | }) |
110 | ]; | 110 | ]; |
111 | 111 | ||