mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 04:43:09 +03:00
qmc2 : init at 0.195
This commit is contained in:
parent
48608f3e16
commit
a611114b46
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;
|
||||
};
|
||||
}
|
@ -14300,6 +14300,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 {};
|
||||
|
Loading…
Reference in New Issue
Block a user