Merge pull request #35057 from bignaux/qmc2

qmc2 : init at 0.195
This commit is contained in:
Michael Raskin 2018-03-10 13:07:45 +00:00 committed by GitHub
commit 00d6d772e5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 42 additions and 0 deletions

View File

@ -0,0 +1,40 @@
{ stdenv
, fetchurl, qmake, qttools, pkgconfig
, minizip, zlib
, qtbase, qtsvg, qtmultimedia, qtwebkit, qttranslations, qtxmlpatterns
, rsync, SDL2, xwininfo
, utillinux
, xorg
}:
stdenv.mkDerivation rec {
name = "qmc2-${version}";
version = "0.195";
src = fetchurl {
url = "mirror://sourceforge/project/qmc2/qmc2/${version}/${name}.tar.gz";
sha256 = "1dzmjlfk8pdspns6zg1jmd5fqzg8igd4q38cz4a1vf39lx74svns";
};
preBuild = ''
patchShebangs scripts
'';
nativeBuildInputs = [ qttools pkgconfig ];
buildInputs = [ minizip qtbase qtsvg qtmultimedia qtwebkit
qttranslations qtxmlpatterns rsync SDL2
xwininfo zlib utillinux xorg.libxcb ];
makeFlags = [ "DESTDIR=$(out)"
"PREFIX=/"
"DATADIR=/share/"
"SYSCONFDIR=/etc" ];
meta = with stdenv.lib; {
description = "A Qt frontend for MAME/MESS";
homepage = https://qmc2.batcom-it.net;
license = licenses.gpl2;
maintainers = [ maintainers.genesis ];
platforms = platforms.linux;
};
}

View File

@ -14337,6 +14337,8 @@ with pkgs;
qgo = libsForQt5.callPackage ../games/qgo { };
qmc2 = libsForQt5.callPackage ../misc/emulators/qmc2 { };
quattrocento = callPackage ../data/fonts/quattrocento {};
quattrocento-sans = callPackage ../data/fonts/quattrocento-sans {};