about summary refs log tree commit diff
path: root/pkgs/applications/networking/browsers/mozilla-plugins/gmtk/default.nix
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2012-02-23 18:32:42 +0000
committerPeter Simons <simons@cryp.to>2012-02-23 18:32:42 +0000
commit31e7a2ce7a0caa65095468709791e658944e2ef5 (patch)
treedcecca8895090f0d640a603fb91ccb4287092204 /pkgs/applications/networking/browsers/mozilla-plugins/gmtk/default.nix
parent1ee7c4250ffce7fad5749bee0de5530425052dce (diff)
gecko-mediaplayer: updated to version 1.0.5
I hoped this update would fix the build errors, but in fact it didn't. :-(

svn path=/nixpkgs/trunk/; revision=32518
Diffstat (limited to 'pkgs/applications/networking/browsers/mozilla-plugins/gmtk/default.nix')
-rw-r--r--pkgs/applications/networking/browsers/mozilla-plugins/gmtk/default.nix13
1 files changed, 13 insertions, 0 deletions
diff --git a/pkgs/applications/networking/browsers/mozilla-plugins/gmtk/default.nix b/pkgs/applications/networking/browsers/mozilla-plugins/gmtk/default.nix
new file mode 100644
index 0000000000000..6ccab87ebe743
--- /dev/null
+++ b/pkgs/applications/networking/browsers/mozilla-plugins/gmtk/default.nix
@@ -0,0 +1,13 @@
+{ stdenv, fetchurl, intltool, pkgconfig, gtk, GConf, alsaLib }:
+
+stdenv.mkDerivation rec {
+  name = "gmtk-1.0.5";
+
+  src = fetchurl {
+    url = "http://gmtk.googlecode.com/files/${name}.tar.gz";
+    sha256 = "a07130d62719e8c1244f8405dd97445798df5204fc0f3f2f2b669b125114b468";
+  };
+
+  buildInputs = [ intltool pkgconfig gtk GConf alsaLib ];
+}
+