This commit is contained in:
Martin Potier 2017-08-21 12:10:23 +02:00
parent 0dedd03c80
commit 42397139b4
2 changed files with 7 additions and 4 deletions

View File

@ -51,7 +51,7 @@
mpv mpv
optipng optipng
pavucontrol pavucontrol
qutebrowser qutebrowserWE
xclip xclip
zathura zathura
]; ];
@ -66,8 +66,8 @@
}; };
trackpoint.enable = true; trackpoint.enable = true;
opengl.extraPackages = with pkgs; [ # These are imported by ocl-icd opengl.extraPackages = with pkgs; [ # These are imported by ocl-icd
beignet # intel gpu
intel-ocl # intel cpu intel-ocl # intel cpu
#beignet # intel gpu
]; ];
}; };
@ -326,6 +326,9 @@
nixpkgs.overlays = [ (self: super: { nixpkgs.overlays = [ (self: super: {
st = super.callPackage ./pkgs/st.nix {}; st = super.callPackage ./pkgs/st.nix {};
cups-filters = super.callPackage /home/eeva/pkgs/cups-filters {}; cups-filters = super.callPackage /home/eeva/pkgs/cups-filters {};
qutebrowserWE = pkgs.qutebrowser.overrideAttrs (oldAttrs: rec {
withWebEngineDefault = true;
});
}) })
]; ];

View File

@ -4,10 +4,10 @@
with stdenv.lib; with stdenv.lib;
let patches' = builtins.map fetchurl [ let patches' = builtins.map fetchurl [
{ url = "http://st.suckless.org/patches/st-no_bold_colors-20170623-b331da5.diff"; { url = "http://st.suckless.org/patches/solarized/st-no_bold_colors-20170623-b331da5.diff";
sha256 = "71e1211189d9e11da93ee49388379c5f8469fcd3e1f48bb4d791ddaf161f5845"; sha256 = "71e1211189d9e11da93ee49388379c5f8469fcd3e1f48bb4d791ddaf161f5845";
} }
{ url = "http://st.suckless.org/patches/st-solarized-both-20170626-b331da5.diff"; { url = "http://st.suckless.org/patches/solarized/st-solarized-both-20170626-b331da5.diff";
sha256 = "d1f168d225763680c6dc6e9a426b8bb56ff45967ffd0ea79f56b7af42c1141d9"; sha256 = "d1f168d225763680c6dc6e9a426b8bb56ff45967ffd0ea79f56b7af42c1141d9";
} }
]; ];