Merge pull request #3905 from AndersonTorres/stella
Stella 4.0: New Package
This commit is contained in:
commit
f70337a8bd
37
pkgs/misc/emulators/stella/default.nix
Normal file
37
pkgs/misc/emulators/stella/default.nix
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
{ stdenv, fetchurl
|
||||||
|
, pkgconfig, SDL2
|
||||||
|
}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
|
||||||
|
name = "stella-${version}";
|
||||||
|
version = "4.0";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "http://downloads.sourceforge.net/project/stella/stella/${version}/${name}-src.tar.gz";
|
||||||
|
sha256 = "1j96sj2qflq3agb7fvb08ih3pxy8nsvlkwj40q3n00q9k884ad5w";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = with stdenv.lib;
|
||||||
|
[ pkgconfig SDL2 ];
|
||||||
|
|
||||||
|
configureFlags = ''
|
||||||
|
'';
|
||||||
|
|
||||||
|
NIX_CFLAGS_COMPILE="";
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "An open-source Atari 2600 VCS emulator";
|
||||||
|
longDescription = ''
|
||||||
|
Stella is a multi-platform Atari 2600 VCS emulator released under
|
||||||
|
the GNU General Public License (GPL). Stella was originally
|
||||||
|
developed for Linux by Bradford W. Mott, and is currently
|
||||||
|
maintained by Stephen Anthony.
|
||||||
|
As of its 3.5 release, Stella is officialy donationware.
|
||||||
|
'';
|
||||||
|
homepage = http://stella.sourceforge.net/;
|
||||||
|
license = licenses.gpl2;
|
||||||
|
maintainers = [ maintainers.AndersonTorres ];
|
||||||
|
platforms = platforms.linux;
|
||||||
|
};
|
||||||
|
}
|
@ -9728,6 +9728,8 @@ let
|
|||||||
conf = config.st.conf or null;
|
conf = config.st.conf or null;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
stella = callPackage ../misc/emulators/stella { };
|
||||||
|
|
||||||
linuxstopmotion = callPackage ../applications/video/linuxstopmotion { };
|
linuxstopmotion = callPackage ../applications/video/linuxstopmotion { };
|
||||||
|
|
||||||
sweethome3d = recurseIntoAttrs ( (callPackage ../applications/misc/sweethome3d { })
|
sweethome3d = recurseIntoAttrs ( (callPackage ../applications/misc/sweethome3d { })
|
||||||
|
Loading…
x
Reference in New Issue
Block a user