nixpkgs/pkgs/applications/misc/qtbitcointrader/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

36 lines
868 B
Nix
Raw Normal View History

{ lib, fetchFromGitHub, qt5, mkDerivation }:
2014-04-26 20:09:48 +00:00
mkDerivation rec {
2019-08-13 21:52:01 +00:00
pname = "qtbitcointrader";
version = "1.40.43";
2014-04-26 20:09:48 +00:00
src = fetchFromGitHub {
owner = "JulyIGHOR";
repo = "QtBitcoinTrader";
rev = "v${version}";
sha256 = "sha256-u3+Kwn8KunYUpWCd55TQuVVfoSp8hdti93d6hk7Uqx8=";
2014-04-26 20:09:48 +00:00
};
2016-04-23 08:45:24 +00:00
buildInputs = [ qt5.qtbase qt5.qtmultimedia qt5.qtscript ];
2014-04-26 20:09:48 +00:00
postUnpack = "sourceRoot=\${sourceRoot}/src";
2016-04-23 08:45:24 +00:00
configurePhase = ''
runHook preConfigure
2016-04-23 08:45:24 +00:00
qmake $qmakeFlags \
PREFIX=$out \
2014-04-26 20:09:48 +00:00
DESKTOPDIR=$out/share/applications \
ICONDIR=$out/share/pixmaps \
2016-04-23 08:45:24 +00:00
QtBitcoinTrader_Desktop.pro
runHook postConfigure
2014-04-26 20:09:48 +00:00
'';
meta = with lib; {
description = "Bitcoin trading client";
mainProgram = "QtBitcoinTrader";
homepage = "https://centrabit.com/";
license = licenses.gpl3;
platforms = qt5.qtbase.meta.platforms;
};
2014-11-12 17:10:54 +00:00
}