Add spacedrive v2

This commit is contained in:
Christopher Mühl 2026-01-13 10:32:17 +01:00
parent ccf1408352
commit 8cb043ccde
No known key found for this signature in database
GPG key ID: 925AC7D69955293F
3 changed files with 12 additions and 3 deletions

View file

@ -23,6 +23,7 @@
onlyoffice-desktopeditors # libreoffice alternative
speedcrunch # GUI calculator app
calibre # eBook Manager
spacedrive-v2
cider-2 # Apple music player
fractal # Matrix client

View file

@ -15,7 +15,7 @@
};
in
overlayFn {
inherit inputs;
inherit inputs lib;
channels =
{
nixpkgs = final;

View file

@ -3,10 +3,18 @@
lib,
...
}: final: prev: {
spacedrive_v2 = channels.unstable.spacedrive.overrideAttrs (old: {
spacedrive-v2 = channels.unstable.spacedrive.overrideAttrs (old: {
version = "2.0.0-alpha.1";
src = prev.fetchurl {
url = "https://github.com/spacedriveapp/spacedrive/releases/download/v2.0.0-alpha.1/Spacedrive-linux-x86_64.deb";
hash = lib.fakeHash;
hash = "sha256-26qxNO17DTYQSYtH6aRy0PoNpb4BGeoZWOQWZtfV3IY=";
};
buildInputs =
(old.buildInputs or [])
++ (with channels.unstable; [
libheif
ffmpeg_7-full.lib
]);
});
}