5475f367a5
I reworked the spacing. svn path=/nixpkgs/trunk/; revision=33229
23 lines
676 B
Nix
23 lines
676 B
Nix
{ stdenv, fetchurl, gtk, glib, pkgconfig, libgnome, libgnomeui, vte
|
|
, curl, cdparanoia, libid3tag, ncurses, libtool }:
|
|
|
|
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 ncurses libtool ];
|
|
|
|
meta = {
|
|
description = "GTK+-based audio CD player/ripper";
|
|
homepage = http://nostatic.org/grip;
|
|
license = "GPLv2";
|
|
maintainers = [ stdenv.lib.maintainers.marcweber ];
|
|
#platforms = args.lib.platforms.linux;
|
|
};
|
|
}
|