summary refs log tree commit diff
path: root/pkgs/applications/networking/browsers/mozilla-plugins/gmtk/default.nix
blob: 6ccab87ebe743f9e4fa9b3c3570ffac2cbf352b7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
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 ];
}