nixpkgs/pkgs/misc/emulators/citra/default.nix
Silvan Mosberger f5fa5fa4d6 pkgs: refactor needless quoting of homepage meta attribute (#27809)
* pkgs: refactor needless quoting of homepage meta attribute

A lot of packages are needlessly quoting the homepage meta attribute
(about 1400, 22%), this commit refactors all of those instances.

* pkgs: Fixing some links that were wrongfully unquoted in the previous
commit

* Fixed some instances
2017-08-01 22:03:30 +02:00

34 lines
979 B
Nix

{ stdenv, fetchgit, cmake, SDL2, qtbase, boost, curl, gtest }:
stdenv.mkDerivation rec {
name = "citra-2017-07-26";
# Submodules
src = fetchgit {
url = "https://github.com/citra-emu/citra";
rev = "a724fb365787718f9e44adedc14e59d0854905a6";
sha256 = "0lkrwhxvq85c0smix27xvj8m463bxa67qhy8m8r43g39n0h8d5sf";
};
nativeBuildInputs = [ cmake ];
buildInputs = [ SDL2 qtbase boost curl gtest ];
cmakeFlags = [ "-DUSE_SYSTEM_CURL=ON" "-DUSE_SYSTEM_GTEST=ON" ];
preConfigure = ''
# Trick configure system.
sed -n 's,^ *path = \(.*\),\1,p' .gitmodules | while read path; do
mkdir "$path/.git"
done
'';
enableParallelBuilding = true;
meta = with stdenv.lib; {
homepage = https://citra-emu.org/;
description = "An open-source emulator for the Nintendo 3DS capable of playing many of your favorite games.";
platforms = platforms.linux;
license = licenses.gpl2;
maintainers = with maintainers; [ abbradar ];
};
}