From b54fa1e351074531628178cd4da7dccc7c334824 Mon Sep 17 00:00:00 2001 From: Ryan Mulligan Date: Sat, 4 Jun 2016 13:43:43 -0700 Subject: [PATCH] zsnes: add desktop item add desktop item so zsnes can be used without the terminal add icons --- pkgs/misc/emulators/zsnes/default.nix | 30 +++++++++++++++++++++++++-- 1 file changed, 28 insertions(+), 2 deletions(-) diff --git a/pkgs/misc/emulators/zsnes/default.nix b/pkgs/misc/emulators/zsnes/default.nix index 23930ac624c..be7666487b9 100644 --- a/pkgs/misc/emulators/zsnes/default.nix +++ b/pkgs/misc/emulators/zsnes/default.nix @@ -1,6 +1,18 @@ -{stdenv, fetchurl, fetchpatch, nasm, SDL, zlib, libpng, ncurses, mesa}: +{stdenv, fetchurl, fetchpatch, nasm, SDL, zlib, libpng, ncurses, mesa +, makeDesktopItem }: -stdenv.mkDerivation { +let + desktopItem = makeDesktopItem { + name = "zsnes"; + exec = "zsnes"; + icon = "zsnes"; + comment = "A SNES emulator"; + desktopName = "zsnes"; + genericName = "zsnes"; + categories = "Game;"; + }; + +in stdenv.mkDerivation { name = "zsnes-1.51"; src = fetchurl { @@ -39,6 +51,20 @@ stdenv.mkDerivation { configureFlags = [ "--enable-release" ]; + postInstall = '' + function installIcon () { + mkdir -p $out/share/icons/hicolor/$1/apps/ + cp icons/$1x32.png $out/share/icons/hicolor/$1/apps/zsnes.png + } + installIcon "16x16" + installIcon "32x32" + installIcon "48x48" + installIcon "64x64" + + mkdir -p $out/share/applications + ln -s ${desktopItem}/share/applications/* $out/share/applications/ + ''; + meta = { description = "A Super Nintendo Entertainment System Emulator"; license = stdenv.lib.licenses.gpl2Plus;