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

36 lines
889 B
Nix
Raw Normal View History

2016-04-23 10:45:24 +02:00
{ stdenv, fetchurl, qt5 }:
2014-04-26 22:09:48 +02:00
let
2016-04-23 10:45:24 +02:00
version = "1.10.01";
2014-04-26 22:09:48 +02:00
in
stdenv.mkDerivation {
name = "qtbitcointrader-${version}";
2016-04-23 10:45:24 +02:00
src = fetchurl {
url = "https://github.com/JulyIGHOR/QtBitcoinTrader/archive/v${version}.tar.gz";
sha256 = "0pgj8rsk9yxvls7yjpzblzbci2vvd0mlf9c7wdbjhwf6qyi7dfi3";
2014-04-26 22:09:48 +02:00
};
2016-04-23 10:45:24 +02:00
buildInputs = [ qt5.qtbase qt5.qtmultimedia qt5.qtscript ];
2014-04-26 22:09:48 +02:00
postUnpack = "sourceRoot=\${sourceRoot}/src";
2016-04-23 10:45:24 +02:00
configurePhase = ''
runHook preConfigure
2016-04-23 10:45:24 +02:00
qmake $qmakeFlags \
PREFIX=$out \
2014-04-26 22:09:48 +02:00
DESKTOPDIR=$out/share/applications \
ICONDIR=$out/share/pixmaps \
2016-04-23 10:45:24 +02:00
QtBitcoinTrader_Desktop.pro
runHook postConfigure
2014-04-26 22:09:48 +02:00
'';
2014-11-12 18:10:54 +01:00
meta = with stdenv.lib;
2016-04-23 10:45:24 +02:00
{ description = "Bitcoin trading client";
2014-11-12 18:10:54 +01:00
homepage = https://centrabit.com/;
license = licenses.lgpl3;
2016-04-23 10:45:24 +02:00
platforms = qt5.qtbase.meta.platforms;
maintainers = [ maintainers.ehmry ];
2014-11-12 18:10:54 +01:00
};
}