mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
add retroarch 0.9.9
This commit is contained in:
parent
896da1bf8a
commit
1e7e9c583d
2 changed files with 29 additions and 0 deletions
27
pkgs/misc/emulators/retroarch/default.nix
Normal file
27
pkgs/misc/emulators/retroarch/default.nix
Normal file
|
@ -0,0 +1,27 @@
|
|||
{ stdenv, fetchurl, pkgconfig, which
|
||||
, SDL, mesa, alsaLib
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "retroarch-0.9.9";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://themaister.net/retroarch-dl/${name}.tar.gz";
|
||||
sha256 = "08xlndpl14c4ccgp752ixx3a7ajf3xp93nawhinwxq0cw801prda";
|
||||
};
|
||||
|
||||
buildInputs = [
|
||||
pkgconfig which SDL mesa alsaLib
|
||||
];
|
||||
|
||||
preConfigure = ''
|
||||
configureFlags="--global-config-dir=$out/etc"
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "A cross-platform multi-system emulator";
|
||||
homepage = "http://themaister.net/retroarch.html";
|
||||
license = stdenv.lib.licenses.gpl3Plus;
|
||||
platform = stdenv.lib.platforms.linux;
|
||||
};
|
||||
}
|
|
@ -9474,6 +9474,8 @@ let
|
|||
|
||||
putty = callPackage ../applications/networking/remote/putty { };
|
||||
|
||||
retroarch = callPackage ../misc/emulators/retroarch { };
|
||||
|
||||
rssglx = callPackage ../misc/screensavers/rss-glx { };
|
||||
|
||||
xlockmore = callPackage ../misc/screensavers/xlockmore { };
|
||||
|
|
Loading…
Reference in a new issue