Overriding mopidy

This commit is contained in:
Martin Potier 2019-09-26 08:55:10 +03:00
parent c8acf85cd8
commit 2dc4d0f66f
No known key found for this signature in database
GPG Key ID: D4DD957DBA4AD89E
1 changed files with 8 additions and 1 deletions

View File

@ -4,10 +4,15 @@ self: super:
let
iosevkaTree = import (builtins.fetchTarball https://github.com/NixOS/nixpkgs/archive/dd2f026780399cf11c47fcf6085145b25b14307e.tar.gz) {};
mopidyTree = import (builtins.fetchTarball https://github.com/NixOS/nixpkgs/archive/d68db15912f6ff0f0082ed3825efae5098c77905.tar.gz) {};
in
{
qutebrowserWE = super.qutebrowser.override { withWebEngineDefault = true; };
# Picked from 2019-09-26 tree
# Delete this when it lands in main channel
mopidy = mopidyTree.mopidy;
# Picked from 2019-09-25 tree
# replace iosevkaTree by super once it's in the main channel
iosevka-hskl = iosevkaTree.iosevka.override {
privateBuildPlan = {
family = "Iosevka Samae";
@ -24,6 +29,8 @@ in
set = "Samae";
};
qutebrowserWE = super.qutebrowser.override { withWebEngineDefault = true; };
wineNoGS = super.wineStaging.override { gstreamerSupport = false; };
vim-samae = super.callPackage ./vim {};