Add spacedrive v2
This commit is contained in:
parent
ccf1408352
commit
8cb043ccde
3 changed files with 12 additions and 3 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@
|
|||
};
|
||||
in
|
||||
overlayFn {
|
||||
inherit inputs;
|
||||
inherit inputs lib;
|
||||
channels =
|
||||
{
|
||||
nixpkgs = final;
|
||||
|
|
|
|||
|
|
@ -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
|
||||
]);
|
||||
});
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue