about summary refs log tree commit diff
path: root/pkgs/applications/misc/grip/default.nix
blob: a82715fc13cd4f6ead397a820a6c177c36081c06 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
args: with args;

stdenv.mkDerivation {
  name = "grip-3.2.0";

  src = fetchurl {
    url = http://prdownloads.sourceforge.net/grip/grip-3.2.0.tar.gz;
    sha256 = "1jh5x35rq15n8ivlp9wbdx8x9mj6agf5rfdv8sd6gai851zsclas";
  };

  buildInputs = [gtk glib pkgconfig libgnome libgnomeui vte curl cdparanoia libid3tag];

  meta = { 
    description = "GTK+ based Audio CD Player/Ripper";
    homepage = http://nostatic.org/grip;
    license = "GPLv2";
    maintainers = [args.lib.maintainers.marcweber];
    #platforms = args.lib.platforms.linux;
  };
}