94908e262b
New releases of Spacedrive were available since the last update of the Nix package. Update to latest version.
77 lines
2.6 KiB
Nix
77 lines
2.6 KiB
Nix
{ lib
|
|
, pkgs
|
|
, stdenv
|
|
, fetchurl
|
|
, appimageTools
|
|
, undmg
|
|
, nix-update-script
|
|
}:
|
|
|
|
let
|
|
pname = "spacedrive";
|
|
version = "0.2.4";
|
|
|
|
src = fetchurl {
|
|
aarch64-darwin = {
|
|
url = "https://github.com/spacedriveapp/spacedrive/releases/download/${version}/Spacedrive-darwin-aarch64.dmg";
|
|
hash = "sha256-rVRmlhsvvFFRr3ghX0cvfcJO3WlbaNNBo+r4I556YEg=";
|
|
};
|
|
x86_64-darwin = {
|
|
url = "https://github.com/spacedriveapp/spacedrive/releases/download/${version}/Spacedrive-darwin-x86_64.dmg";
|
|
hash = "sha256-etRAcGC5S0GwVrBWICfB5ef83xcp/35K0/QndKmPUSE=";
|
|
};
|
|
x86_64-linux = {
|
|
url = "https://github.com/spacedriveapp/spacedrive/releases/download/${version}/Spacedrive-linux-x86_64.AppImage";
|
|
hash = "sha256-D8etNXrDVLHa1wg+7Xu9yXUvhlAXxMVBM3GpOerFsu0=";
|
|
};
|
|
}.${stdenv.system} or (throw "${pname}-${version}: ${stdenv.system} is unsupported.");
|
|
|
|
meta = {
|
|
description = "An open source file manager, powered by a virtual distributed filesystem";
|
|
homepage = "https://www.spacedrive.com";
|
|
changelog = "https://github.com/spacedriveapp/spacedrive/releases/tag/${version}";
|
|
platforms = [ "aarch64-darwin" "x86_64-darwin" "x86_64-linux" ];
|
|
license = lib.licenses.agpl3Plus;
|
|
sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
|
|
maintainers = with lib.maintainers; [ DataHearth heisfer mikaelfangel stepbrobd ];
|
|
mainProgram = "spacedrive";
|
|
};
|
|
|
|
passthru.updateScript = nix-update-script { };
|
|
in
|
|
if stdenv.isDarwin then stdenv.mkDerivation
|
|
{
|
|
inherit pname version src meta passthru;
|
|
|
|
sourceRoot = "Spacedrive.app";
|
|
|
|
nativeBuildInputs = [ undmg ];
|
|
|
|
installPhase = ''
|
|
mkdir -p "$out/Applications/Spacedrive.app"
|
|
cp -r . "$out/Applications/Spacedrive.app"
|
|
mkdir -p "$out/bin"
|
|
ln -s "$out/Applications/Spacedrive.app/Contents/MacOS/Spacedrive" "$out/bin/spacedrive"
|
|
'';
|
|
}
|
|
else appimageTools.wrapType2 {
|
|
inherit pname version src meta passthru;
|
|
|
|
extraPkgs = pkgs:
|
|
(appimageTools.defaultFhsEnvArgs.multiPkgs pkgs) ++ [ pkgs.libthai ];
|
|
|
|
extraInstallCommands =
|
|
let
|
|
appimageContents = appimageTools.extractType2 { inherit pname version src; };
|
|
in
|
|
''
|
|
# Remove version from entrypoint
|
|
mv $out/bin/spacedrive-${version} $out/bin/spacedrive
|
|
|
|
# Install .desktop files
|
|
install -Dm444 ${appimageContents}/com.spacedrive.desktop -t $out/share/applications
|
|
install -Dm444 ${appimageContents}/spacedrive.png -t $out/share/pixmaps
|
|
substituteInPlace $out/share/applications/com.spacedrive.desktop \
|
|
--replace 'Exec=usr/bin/spacedrive' 'Exec=spacedrive'
|
|
'';
|
|
}
|