24b8c6d7dc
We add Etcher, the Electron image flasher.
95 lines
2.4 KiB
Nix
95 lines
2.4 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchurl
|
|
, gcc-unwrapped
|
|
, dpkg
|
|
, polkit
|
|
, bash
|
|
, nodePackages
|
|
, electron_3
|
|
, gtk3
|
|
, wrapGAppsHook
|
|
}:
|
|
|
|
let
|
|
libPath = lib.makeLibraryPath [
|
|
# for libstdc++.so.6
|
|
gcc-unwrapped.lib
|
|
];
|
|
|
|
sha256 = {
|
|
"x86_64-linux" = "0zb9j34dz7ybjix018bm8g0b6kilw9300q4ahcm22p0ggg528dh7";
|
|
"i686-linux" = "0wsv4mvwrvsaz1pwiqs94b3854h5l8ff2dbb1ybxmvwjbfrkdcqc";
|
|
}."${stdenv.system}";
|
|
|
|
arch = {
|
|
"x86_64-linux" = "amd64";
|
|
"i686-linux" = "i386";
|
|
}."${stdenv.system}";
|
|
|
|
in stdenv.mkDerivation rec {
|
|
pname = "etcher";
|
|
version = "1.5.60";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/balena-io/etcher/releases/download/v${version}/balena-etcher-electron_${version}_${arch}.deb";
|
|
inherit sha256;
|
|
};
|
|
|
|
buildInputs = [
|
|
gtk3
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
wrapGAppsHook
|
|
];
|
|
|
|
dontBuild = true;
|
|
dontConfigure = true;
|
|
|
|
unpackPhase = ''
|
|
${dpkg}/bin/dpkg-deb -x $src .
|
|
'';
|
|
|
|
# sudo-prompt has hardcoded binary paths on Linux and we patch them here
|
|
# along with some other paths
|
|
patchPhase = ''
|
|
${nodePackages.asar}/bin/asar extract opt/balenaEtcher/resources/app.asar tmp
|
|
# Use Nix(OS) paths
|
|
sed -i "s|/usr/bin/pkexec|/usr/bin/pkexec', '/run/wrappers/bin/pkexec|" tmp/node_modules/sudo-prompt/index.js
|
|
sed -i 's|/bin/bash|${bash}/bin/bash|' tmp/node_modules/sudo-prompt/index.js
|
|
sed -i "s|process.resourcesPath|'$out/opt/balenaEtcher/resources/'|" tmp/generated/gui.js
|
|
${nodePackages.asar}/bin/asar pack tmp opt/balenaEtcher/resources/app.asar
|
|
rm -rf tmp
|
|
# Fix up .desktop file
|
|
substituteInPlace usr/share/applications/balena-etcher-electron.desktop \
|
|
--replace "/opt/balenaEtcher/balena-etcher-electron" "$out/bin/balena-etcher-electron"
|
|
'';
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin
|
|
cp -r opt $out/
|
|
cp -r usr/share $out/
|
|
|
|
# We'll use our Nixpkgs electron_3 instead
|
|
rm $out/opt/balenaEtcher/balena-etcher-electron
|
|
|
|
ln -s ${electron_3}/bin/electron $out/bin/balena-etcher-electron
|
|
'';
|
|
|
|
preFixup = ''
|
|
gappsWrapperArgs+=(
|
|
--add-flags $out/opt/balenaEtcher/resources/app.asar
|
|
--prefix LD_LIBRARY_PATH : ${libPath}
|
|
)
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Flash OS images to SD cards and USB drives, safely and easily";
|
|
homepage = "https://etcher.io/";
|
|
license = licenses.asl20;
|
|
maintainers = [ maintainers.shou ];
|
|
platforms = [ "i686-linux" "x86_64-linux" ];
|
|
};
|
|
}
|