make seafile overlay build against nixos-unstable
This commit is contained in:
parent
fa44ab957e
commit
41dfac9e42
|
@ -1,8 +1,14 @@
|
||||||
|
let
|
||||||
|
unstable = (import <nixos-unstable> {overlays = [ seaf-overlay ]; }).pkgs;
|
||||||
|
|
||||||
|
seaf-overlay = (import ./ov/seafile-overlay);
|
||||||
|
in
|
||||||
|
|
||||||
[(self: super:
|
[(self: super:
|
||||||
{
|
rec {
|
||||||
|
seafile-server = unstable.seafile-server;
|
||||||
amarok = super.libsForQt5.callPackage ./ov/amarok.nix {};
|
amarok = super.libsForQt5.callPackage ./ov/amarok.nix {};
|
||||||
#stapler = super.python2.callPackage ./ov/stapler.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 {
|
myVim = with super; (vim_configurable.override {python = python3;}).customize {
|
||||||
# executable/ package name
|
# executable/ package name
|
||||||
name = "vim";
|
name = "vim";
|
||||||
|
@ -32,5 +38,8 @@
|
||||||
};
|
};
|
||||||
# build with debug symbols and in debug mode (less optimized)
|
# 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";}));
|
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;};
|
||||||
}
|
}
|
||||||
)]
|
)
|
||||||
|
|
||||||
|
]
|
||||||
|
|
Loading…
Reference in a new issue