mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-20 08:59:32 +03:00
58 lines
1.0 KiB
Nix
58 lines
1.0 KiB
Nix
{ stdenv
|
|
, lib
|
|
, fetchurl
|
|
, autoPatchelfHook
|
|
, wrapGAppsHook
|
|
, dbus
|
|
, libGL
|
|
, libX11
|
|
, libXcursor
|
|
, libXi
|
|
, libXrandr
|
|
, udev
|
|
, unzip
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "cryptowatch-desktop";
|
|
version = "0.5.0";
|
|
|
|
src = fetchurl {
|
|
url = "https://cryptowat.ch/desktop/download/linux/${version}";
|
|
sha256 = "0lr5fsd0f44b1v9f2dvx0a0lmz9dyivyz5d98qx2gcv3jkngw34v";
|
|
};
|
|
|
|
unpackPhase = "unzip $src";
|
|
|
|
nativeBuildInputs = [
|
|
autoPatchelfHook
|
|
wrapGAppsHook
|
|
unzip
|
|
];
|
|
|
|
buildInputs = [
|
|
dbus
|
|
udev
|
|
];
|
|
|
|
sourceRoot = ".";
|
|
|
|
installPhase = ''
|
|
install -m755 -D cryptowatch_desktop $out/bin/cryptowatch_desktop
|
|
'';
|
|
|
|
preFixup = ''
|
|
gappsWrapperArgs+=(
|
|
--prefix LD_LIBRARY_PATH : "${lib.makeLibraryPath [ libGL libX11 libXcursor libXrandr libXi ]}"
|
|
)
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://cryptowat.ch";
|
|
description = "Application for visualising real-time cryptocurrency market data";
|
|
platforms = platforms.linux;
|
|
license = licenses.unfree;
|
|
maintainers = with maintainers; [ livnev ];
|
|
};
|
|
}
|