From 41dfac9e424ed4289e7c81114b6a5396df812c9e Mon Sep 17 00:00:00 2001 From: Trolli Schmittlauch Date: Mon, 30 Dec 2019 01:46:47 +0100 Subject: [PATCH] make seafile overlay build against nixos-unstable --- home/overlays.nix | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/home/overlays.nix b/home/overlays.nix index e62addb..ed04f8b 100644 --- a/home/overlays.nix +++ b/home/overlays.nix @@ -1,8 +1,14 @@ +let + unstable = (import {overlays = [ seaf-overlay ]; }).pkgs; + + seaf-overlay = (import ./ov/seafile-overlay); +in + [(self: super: -{ +rec { + seafile-server = unstable.seafile-server; amarok = super.libsForQt5.callPackage ./ov/amarok.nix {}; #stapler = super.python2.callPackage ./ov/stapler.nix {}; - #tor-browser-bundle-bin = super.callPackage ./ov/tor-browser-bundle-bin.nix { inherit (super.gnome3) defaultIconTheme; }; myVim = with super; (vim_configurable.override {python = python3;}).customize { # executable/ package name name = "vim"; @@ -32,5 +38,8 @@ }; # build with debug symbols and in debug mode (less optimized) opencvDebug = with super; enableDebugging ((opencv3.override {enablePython=true; enableGtk3=true; enableDocs=true; pythonPackages=pkgs.python3Packages; }).overrideAttrs (oldAttrs: rec {cmakeBuildType = "Debug";})); + #gnutls = super.callPackage ./ov/gnutls {inherit (super.darwin.apple_sdk.frameworks) Security;}; } -)] +) + +]