summary refs log tree commit diff
path: root/pkgs/applications/audio/game-music-emu
diff options
context:
space:
mode:
authorKurt Dietrich <kurto@mac.com>2014-12-22 01:49:34 -0500
committerVladimír Čunát <vcunat@gmail.com>2015-01-20 16:08:01 +0100
commitf101f632b71f9c0ae4397bac58b6e94a5795af5b (patch)
treee24d3da49a6b29f66130160ded18b495b0d04b78 /pkgs/applications/audio/game-music-emu
parent83d9dd40f647a3f6b0be9f6971a85e9b58320078 (diff)
downloadnixpkgs-f101f632b71f9c0ae4397bac58b6e94a5795af5b.tar
nixpkgs-f101f632b71f9c0ae4397bac58b6e94a5795af5b.tar.gz
nixpkgs-f101f632b71f9c0ae4397bac58b6e94a5795af5b.tar.bz2
nixpkgs-f101f632b71f9c0ae4397bac58b6e94a5795af5b.tar.lz
nixpkgs-f101f632b71f9c0ae4397bac58b6e94a5795af5b.tar.xz
nixpkgs-f101f632b71f9c0ae4397bac58b6e94a5795af5b.tar.zst
nixpkgs-f101f632b71f9c0ae4397bac58b6e94a5795af5b.zip
Add game-music-emu, a decoder plugin for mpd (close #5431)
@vcunat: nitpicks and add meta.license.
Diffstat (limited to 'pkgs/applications/audio/game-music-emu')
-rw-r--r--pkgs/applications/audio/game-music-emu/default.nix21
1 files changed, 21 insertions, 0 deletions
diff --git a/pkgs/applications/audio/game-music-emu/default.nix b/pkgs/applications/audio/game-music-emu/default.nix
new file mode 100644
index 00000000000..60d9c0e7b12
--- /dev/null
+++ b/pkgs/applications/audio/game-music-emu/default.nix
@@ -0,0 +1,21 @@
+{ stdenv, fetchurl, cmake }:
+
+stdenv.mkDerivation rec {
+  version = "0.6.0";
+  name = "game-music-emu-${version}";
+
+  src = fetchurl {
+    url = "https://game-music-emu.googlecode.com/files/${name}.tar.bz2";
+    sha256 = "11s9l938nxbrk7qb2k1ppfgizcz00cakbxgv0gajc6hyqv882vjh";
+  };
+
+  buildInputs = [ cmake ];
+
+  meta = with stdenv.lib; {
+    homepage = https://code.google.com/p/game-music-emu/;
+    description = "A collection of video game music file emulators";
+    license = licenses.lgpl21Plus;
+    platforms = platforms.all;
+    maintainers = [ ];
+  };
+}