mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
71 lines
1.7 KiB
Nix
71 lines
1.7 KiB
Nix
{ lib, stdenv
|
|
, fetchurl
|
|
, gcc-unwrapped
|
|
, dpkg
|
|
, util-linux
|
|
, bash
|
|
, makeWrapper
|
|
, electron
|
|
}:
|
|
|
|
let
|
|
inherit (stdenv.hostPlatform) system;
|
|
|
|
throwSystem = throw "Unsupported system: ${stdenv.hostPlatform.system}";
|
|
|
|
sha256 = {
|
|
"x86_64-linux" = "139nlr191bsinx6ixpi2glcr03lsnzq7b0438h3245napsnjpx6p";
|
|
}."${system}" or throwSystem;
|
|
|
|
arch = {
|
|
"x86_64-linux" = "amd64";
|
|
}."${system}" or throwSystem;
|
|
|
|
in
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "terra-station";
|
|
version = "1.2.0";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/terra-money/station-desktop/releases/download/v${version}/Terra.Station_${version}_${arch}.deb";
|
|
inherit sha256;
|
|
};
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
dontConfigure = true;
|
|
dontBuild = true;
|
|
|
|
unpackPhase = ''
|
|
${dpkg}/bin/dpkg-deb -x $src .
|
|
'';
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
mkdir -p $out/bin $out/share/${pname}
|
|
|
|
cp -a usr/share/* $out/share
|
|
cp -a "opt/Terra Station/"{locales,resources} $out/share/${pname}
|
|
|
|
substituteInPlace $out/share/applications/station-electron.desktop \
|
|
--replace "/opt/Terra Station/station-electron" ${pname}
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
postFixup = ''
|
|
makeWrapper ${electron}/bin/electron $out/bin/${pname} \
|
|
--add-flags $out/share/${pname}/resources/app.asar \
|
|
--prefix LD_LIBRARY_PATH : "${lib.makeLibraryPath [ gcc-unwrapped.lib ]}"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Terra station is the official wallet of the Terra blockchain.";
|
|
homepage = "https://docs.terra.money/docs/learn/terra-station/README.html";
|
|
license = licenses.isc;
|
|
maintainers = [ maintainers.peterwilli ];
|
|
platforms = [ "x86_64-linux" ];
|
|
};
|
|
}
|