qt5: remove makeQtWrapper

This commit is contained in:
Thomas Tuegel
2017-06-18 08:44:42 -05:00
parent 1607f51613
commit c816bbc8a8
92 changed files with 323 additions and 582 deletions
@@ -1,6 +1,6 @@
{ stdenv, fetchgit, cmake, makeQtWrapper, qtbase, qttools }:
{ mkDerivation, lib, fetchgit, cmake, qtbase, qttools }:
stdenv.mkDerivation rec {
mkDerivation rec {
name = "speedcrunch-${version}";
version = "0.12.0";
@@ -11,21 +11,15 @@ stdenv.mkDerivation rec {
sha256 = "0vh7cd1915bjqzkdp3sk25ngy8cq624mkh8c53c5bnzk357kb0fk";
};
enableParallelBuilding = true;
buildInputs = [ qtbase qttools ];
nativeBuildInputs = [ cmake makeQtWrapper ];
nativeBuildInputs = [ cmake ];
preConfigure = ''
cd src
'';
postFixup = ''
wrapQtProgram $out/bin/speedcrunch
'';
meta = with stdenv.lib; {
meta = with lib; {
homepage = http://speedcrunch.org;
license = licenses.gpl2Plus;
description = "A fast power user calculator";