about summary refs log tree commit diff
path: root/pkgs/applications/misc/qtbitcointrader/default.nix
blob: 8f7fc3b0e261f5a7fca21261ce50fab10cd0fb2d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{ stdenv, fetchFromGitHub, qt }:

let
  version = "1.08.02";
in
stdenv.mkDerivation {
  name = "qtbitcointrader-${version}";

  src = fetchFromGitHub {
    owner = "JulyIGHOR";
    repo = "QtBitcoinTrader";
    rev = "452db3ee9447b8f9e7d63253f834b31394b23d92";
    sha256 = "1l2a021dy2j4sr4nmq7wn27r2zli9nigwbviqzain3nlyzq9fjpg";
  };

  buildInputs = [ qt ];

  postUnpack = "sourceRoot=\${sourceRoot}/src";

  configurePhase = ''
    qmake \
      PREFIX=$out \
      DESKTOPDIR=$out/share/applications \
      ICONDIR=$out/share/pixmaps \
        QtBitcoinTrader_Desktop.pro
  '';

  meta = with stdenv.lib;
    { description = "Secure bitcoin trading client";
      homepage = https://centrabit.com/;
      license = licenses.lgpl3;
      platforms = platforms.linux;  # arbitrary choice
      maintainers = [ maintainers.emery ];
    };
}