mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-25 23:23:07 +00:00
4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
32 lines
850 B
Nix
32 lines
850 B
Nix
{ stdenv, mkDerivation, lib, fetchgit, cmake, SDL2, qtbase, qtmultimedia, boost }:
|
|
|
|
mkDerivation {
|
|
pname = "citra";
|
|
version = "2020-03-21";
|
|
|
|
# Submodules
|
|
src = fetchgit {
|
|
url = "https://github.com/citra-emu/citra";
|
|
rev = "8722b970c52f2c0d8e82561477edb62a53ae9dbb";
|
|
sha256 = "0c1zn1f84h4f6n6p0aqz905yvv5qpdmkj2z58yla6bfgbzabfyrj";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
buildInputs = [ SDL2 qtbase qtmultimedia boost ];
|
|
|
|
preConfigure = ''
|
|
# Trick configure system.
|
|
sed -n 's,^ *path = \(.*\),\1,p' .gitmodules | while read path; do
|
|
mkdir "$path/.git"
|
|
done
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://citra-emu.org";
|
|
description = "An open-source emulator for the Nintendo 3DS";
|
|
license = licenses.gpl2;
|
|
maintainers = with maintainers; [ abbradar ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|