mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
92 lines
3.1 KiB
Nix
92 lines
3.1 KiB
Nix
{ lib, stdenv, fetchFromGitHub
|
|
, autoPatchelfHook
|
|
, fuse, packer
|
|
, maven, jdk, jre, makeWrapper, glib, wrapGAppsHook
|
|
}:
|
|
|
|
let
|
|
pname = "cryptomator";
|
|
version = "1.5.15";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "cryptomator";
|
|
repo = "cryptomator";
|
|
rev = version;
|
|
sha256 = "06n7wda7gfalvsg1rlcm51ss73nlbhh95z6zq18yvn040clkzkij";
|
|
};
|
|
|
|
icons = fetchFromGitHub {
|
|
owner = "cryptomator";
|
|
repo = "cryptomator-linux";
|
|
rev = version;
|
|
sha256 = "1sqbx858zglv0xkpjya0cpbkxf2hkj1xvxhnir3176y2xyjv6aib";
|
|
};
|
|
|
|
# perform fake build to make a fixed-output derivation out of the files downloaded from maven central (120MB)
|
|
deps = stdenv.mkDerivation {
|
|
name = "cryptomator-${version}-deps";
|
|
inherit src;
|
|
|
|
nativeBuildInputs = [ jdk maven ];
|
|
|
|
buildPhase = ''
|
|
cd main
|
|
while mvn -Prelease package -Dmaven.repo.local=$out/.m2 -Dmaven.wagon.rto=5000; [ $? = 1 ]; do
|
|
echo "timeout, restart maven to continue downloading"
|
|
done
|
|
'';
|
|
|
|
# keep only *.{pom,jar,sha1,nbm} and delete all ephemeral files with lastModified timestamps inside
|
|
installPhase = ''
|
|
find $out/.m2 -type f -regex '.+\(\.lastUpdated\|resolver-status\.properties\|_remote\.repositories\)' -delete
|
|
find $out/.m2 -type f -iname '*.pom' -exec sed -i -e 's/\r\+$//' {} \;
|
|
'';
|
|
|
|
outputHashAlgo = "sha256";
|
|
outputHashMode = "recursive";
|
|
outputHash = "195ysv9l861y9d1lvmvi7wmk172ynlba9n233blpaigq88cjn208";
|
|
};
|
|
|
|
in stdenv.mkDerivation rec {
|
|
inherit pname version src;
|
|
|
|
buildPhase = ''
|
|
cd main
|
|
mvn -Prelease package --offline -Dmaven.repo.local=$(cp -dpR ${deps}/.m2 ./ && chmod +w -R .m2 && pwd)/.m2
|
|
'';
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin/ $out/usr/share/cryptomator/libs/
|
|
|
|
cp buildkit/target/libs/* buildkit/target/linux-libs/* $out/usr/share/cryptomator/libs/
|
|
|
|
makeWrapper ${jre}/bin/java $out/bin/cryptomator \
|
|
--add-flags "-classpath '$out/usr/share/cryptomator/libs/*'" \
|
|
--add-flags "-Dcryptomator.settingsPath='~/.config/Cryptomator/settings.json'" \
|
|
--add-flags "-Dcryptomator.ipcPortPath='~/.config/Cryptomator/ipcPort.bin'" \
|
|
--add-flags "-Dcryptomator.logDir='~/.local/share/Cryptomator/logs'" \
|
|
--add-flags "-Dcryptomator.mountPointsDir='~/.local/share/Cryptomator/mnt'" \
|
|
--add-flags "-Djdk.gtk.version=3" \
|
|
--add-flags "-Xss20m" \
|
|
--add-flags "-Xmx512m" \
|
|
--add-flags "org.cryptomator.launcher.Cryptomator" \
|
|
--prefix PATH : "$out/usr/share/cryptomator/libs/:${lib.makeBinPath [ jre glib ]}" \
|
|
--prefix LD_LIBRARY_PATH : "${lib.makeLibraryPath [ fuse ]}" \
|
|
--set JAVA_HOME "${jre.home}"
|
|
|
|
# install desktop entry and icons
|
|
cp -r ${icons}/resources/appimage/AppDir/usr/* $out/
|
|
'';
|
|
|
|
nativeBuildInputs = [ autoPatchelfHook maven makeWrapper wrapGAppsHook jdk ];
|
|
buildInputs = [ fuse packer jre glib ];
|
|
|
|
meta = with lib; {
|
|
description = "Free client-side encryption for your cloud files";
|
|
homepage = "https://cryptomator.org";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ bachp ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|