confclerk: 0.6.4 -> 0.7.1

qt4 -> qt5
This commit is contained in:
ajs124 2022-05-26 02:13:25 +02:00 committed by ehmry
parent 3d54f15c00
commit 7db8c5cc07
2 changed files with 9 additions and 11 deletions

View file

@ -1,22 +1,20 @@
{ lib, stdenv, fetchurl, qt4, qmake4Hook }:
{ lib, mkDerivation, fetchurl, qtbase, qmake }:
let version = "0.6.4"; in
stdenv.mkDerivation {
mkDerivation rec {
pname = "confclerk";
inherit version;
version = "0.7.1";
src = fetchurl {
url = "https://www.toastfreeware.priv.at/tarballs/confclerk/confclerk-${version}.tar.gz";
sha256 = "10rhg44px4nvbkd3p341cmp2ds43jn8r4rvgladda9v8zmsgr2b3";
sha256 = "0l5i4d6lymh0k6gzihs41x4i8v1dz0mrwpga096af0vchpvlcarg";
};
buildInputs = [ qt4 ];
buildInputs = [ qtbase ];
nativeBuildInputs = [ qmake ];
nativeBuildInputs = [ qmake4Hook ];
installPhase = ''
postInstall = ''
mkdir -p $out/bin
cp src/bin/confclerk $out/bin
mv $out/confclerk $out/bin/
'';
meta = {

View file

@ -25830,7 +25830,7 @@ with pkgs;
complete-alias = callPackage ../tools/misc/complete-alias { };
confclerk = callPackage ../applications/misc/confclerk { };
confclerk = libsForQt5.callPackage ../applications/misc/confclerk { };
copyq = libsForQt5.callPackage ../applications/misc/copyq { };