overlays-personal/pkgs/default.nix

58 lines
1.5 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-04-20 20:26:44 +02:00
2018-04-20 20:35:19 +02:00
scientifica-font = super.callPackage ./scientifica-font {};
2018-06-24 18:19:07 +02:00
curie-font = super.callPackage ./curie-font {};
2018-04-20 20:26:44 +02:00
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-04-23 21:53:15 +02:00
url = "https://repository-origin.spotify.com/pool/non-free/s/spotify-client/spotify-client_1.0.77.338.g758ebd78-41_amd64.deb";
sha256 = "1971jc0431pl8yixpl37ryl2l0pqdf0xjvkg59nqdwj3vbdx5606";
2018-03-14 11:57:39 +01:00
};
});
2018-11-20 10:26:27 +01:00
# Probably not needed anymore
#nixops = super.nixops.overrideDerivation (
#old: {
# patchPhase = ''
# substituteInPlace nix/eval-machine-info.nix \
# --replace 'system.nixosVersion' 'system.nixos.version'
# '';
#});
2018-06-01 09:21:56 +02:00
# Originally from Mats Rauhala ®2018
copy = super.writeScriptBin "copy" ''
function clean() {
sleep 10
echo cleaning
${super.xclip}/bin/xclip -sel clipboard -i /dev/null
}
${super.xclip}/bin/xclip -sel clipboard < /dev/stdin
clean &
'';
2018-02-20 12:20:44 +01:00
}