mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 07:53:19 +00:00
b909526ffa
The GTK+ UI is the recommended UI by the developers. It also fixed the x128 emulator from crashing. Moreover, the GTK+ UI also includes desktop files, so we should use these instead of our own.
81 lines
1.4 KiB
Nix
81 lines
1.4 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchurl
|
|
, bison
|
|
, flex
|
|
, perl
|
|
, libpng
|
|
, giflib
|
|
, alsa-lib
|
|
, readline
|
|
, libGLU
|
|
, libGL
|
|
, pkg-config
|
|
, gtk3
|
|
, glew
|
|
, SDL
|
|
, SDL_image
|
|
, dos2unix
|
|
, runtimeShell
|
|
, xa
|
|
, file
|
|
, wrapGAppsHook
|
|
, xdg-utils
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "vice";
|
|
version = "3.7.1";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/vice-emu/vice-${version}.tar.gz";
|
|
sha256 = "sha256-fjgR5gJNsGmL+8MhuzJFckRriFPQG0Bz8JhllXsMq5g=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
bison
|
|
dos2unix
|
|
file
|
|
flex
|
|
pkg-config
|
|
wrapGAppsHook
|
|
];
|
|
|
|
buildInputs = [
|
|
alsa-lib
|
|
giflib
|
|
gtk3
|
|
glew
|
|
libGL
|
|
libGLU
|
|
libpng
|
|
perl
|
|
readline
|
|
SDL
|
|
SDL_image
|
|
xa
|
|
xdg-utils
|
|
];
|
|
dontDisableStatic = true;
|
|
configureFlags = [ "--enable-sdl2ui" "--enable-gtk3ui" "--enable-desktop-files" "--disable-pdf-docs" "--with-gif" ];
|
|
|
|
LIBS = "-lGL";
|
|
|
|
preBuild = ''
|
|
sed -i -e 's|#!/usr/bin/env bash|${runtimeShell}/bin/bash|' src/arch/gtk3/novte/box_drawing_generate.sh
|
|
'';
|
|
|
|
postInstall = ''
|
|
mkdir -p $out/share/applications
|
|
cp src/arch/gtk3/data/unix/vice-org-*.desktop $out/share/applications
|
|
'';
|
|
|
|
meta = {
|
|
description = "Emulators for a variety of 8-bit Commodore computers";
|
|
homepage = "https://vice-emu.sourceforge.io/";
|
|
license = lib.licenses.gpl2Plus;
|
|
maintainers = [ lib.maintainers.sander ];
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
}
|