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:
2020-02-09 17:10:32 +01:00
#let
2019-09-28 13:05:25 +02:00
# mopidyTree = import (builtins.fetchTarball https://github.com/NixOS/nixpkgs/archive/d68db15912f6ff0f0082ed3825efae5098c77905.tar.gz) {};
2020-02-09 17:10:32 +01:00
#in
2018-02-20 12:20:44 +01:00
{
2019-09-28 13:05:25 +02:00
iosevka-hskl = super.iosevka.override {
2019-09-25 10:10:54 +02:00
privateBuildPlan = {
family = "Iosevka Samae";
design = [
"ss08" # Use Pragmata Pro Style
"term" # Disable ligature/ligation
];
slants = {
upright = "normal";
italic = "italic";
oblique = "oblique";
};
2019-04-30 17:02:06 +02:00
};
2019-09-25 10:10:54 +02:00
set = "Samae";
};
2019-04-30 17:02:06 +02:00
2019-07-18 21:07:39 +02:00
wineNoGS = super.wineStaging.override { gstreamerSupport = false; };
2020-02-09 13:38:35 +01:00
surge-samae = super.callPackage ./surge {};
2020-02-09 10:26:45 +01:00
2020-02-09 17:15:44 +01:00
carla-samae = super.qt5.callPackage ./carla {};
2020-02-09 16:51:30 +01:00
2018-02-20 12:27:46 +01:00
vim-samae = super.callPackage ./vim {};
2018-02-20 12:20:44 +01:00
2019-05-14 20:54:45 +02:00
reaper-samae = super.callPackage ./reaper {};
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 {};
2019-07-13 10:05:12 +02:00
victor-mono = super.callPackage ./victor-mono {};
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;
};
2019-04-30 17:02:06 +02:00
2018-06-01 09:21:56 +02:00
# Originally from Mats Rauhala ®2018
copy = super.writeScriptBin "copy" ''
function clean() {
sleep 10
2019-06-03 08:11:50 +02:00
${super.libnotify}/bin/notify-send -u low 'Clipboard cleaned'
2018-06-01 09:21:56 +02:00
${super.xclip}/bin/xclip -sel clipboard -i /dev/null
}
${super.xclip}/bin/xclip -sel clipboard < /dev/stdin
2019-06-03 08:11:50 +02:00
${super.libnotify}/bin/notify-send -u low -t 10000 'Clipboard set'
2018-06-01 09:21:56 +02:00
clean &
'';
2018-02-20 12:20:44 +01:00
}