overlays-personal/pkgs/default.nix

41 lines
1.1 KiB
Nix
Raw Normal View History

2018-02-23 14:41:11 +01:00
# This overlay provides a set of customized pkgs.
2018-02-20 12:20:44 +01:00
self: super:
{
qutebrowserWE = super.qutebrowser.override { withWebEngineDefault = true; };
iosevka-hskl = let
tags = [
"ss08" # Use Pragmata Pro Style
"term" # Disable ligature/ligation
];
in
super.iosevka.override {
nodejs = super.nodejs-8_x;
design = tags;
set = "PPStyle";
};
2018-02-20 12:27:46 +01:00
vim-samae = super.callPackage ./vim {};
2018-02-20 12:20:44 +01:00
2018-02-23 14:41:11 +01:00
# Bug fixes:
kitty07 = super.callPackage ./kitty {};
2018-02-23 14:41:11 +01:00
ripmime = super.ripmime.override {
stdenv = super.overrideCC super.stdenv super.gcc6;
};
2018-03-14 11:57:39 +01:00
spotify = super.spotify.overrideDerivation (
old: {
2018-03-14 11:58:29 +01:00
src = super.fetchurl {
2018-03-14 11:57:39 +01:00
url = "https://repository-origin.spotify.com/pool/non-free/s/spotify-client/spotify-client_1.0.72.117.g6bd7cc73-35_amd64.deb";
sha256 = "0yicwvg6jx8r657ff53326akq3g4ayiinlracjw5jrcs8x9whjap";
};
});
2018-02-25 16:55:47 +01:00
nixops = super.nixops.overrideDerivation (
old: {
patchPhase = ''
substituteInPlace nix/eval-machine-info.nix \
--replace 'system.nixosVersion' 'system.nixos.version'
'';
});
2018-02-20 12:20:44 +01:00
}