commit
00d6d772e5
40
pkgs/misc/emulators/qmc2/default.nix
Normal file
40
pkgs/misc/emulators/qmc2/default.nix
Normal 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;
|
||||||
|
};
|
||||||
|
}
|
@ -14337,6 +14337,8 @@ with pkgs;
|
|||||||
|
|
||||||
qgo = libsForQt5.callPackage ../games/qgo { };
|
qgo = libsForQt5.callPackage ../games/qgo { };
|
||||||
|
|
||||||
|
qmc2 = libsForQt5.callPackage ../misc/emulators/qmc2 { };
|
||||||
|
|
||||||
quattrocento = callPackage ../data/fonts/quattrocento {};
|
quattrocento = callPackage ../data/fonts/quattrocento {};
|
||||||
|
|
||||||
quattrocento-sans = callPackage ../data/fonts/quattrocento-sans {};
|
quattrocento-sans = callPackage ../data/fonts/quattrocento-sans {};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user