nixpkgs/pkgs/applications/misc/grip/default.nix

27 lines
760 B
Nix
Raw Normal View History

{ stdenv, fetchurl, gtk2, glib, pkgconfig, libgnome, libgnomeui, vte
, curl, cdparanoia, libid3tag, ncurses, libtool }:
2013-02-23 19:44:13 +00:00
stdenv.mkDerivation rec {
name = "grip-3.3.1";
src = fetchurl {
2013-02-23 19:44:13 +00:00
url = "mirror://sourceforge/grip/${name}.tar.gz";
sha256 = "1zb6zpq7qmn6bflbgfwisyg3vrjr23yi1c1kqvwndl1f0shr8qyl";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ gtk2 glib libgnome libgnomeui vte curl cdparanoia
libid3tag ncurses libtool ];
hardeningDisable = [ "format" ];
2016-02-11 00:47:33 +00:00
meta = {
description = "GTK+-based audio CD player/ripper";
homepage = http://nostatic.org/grip;
license = stdenv.lib.licenses.gpl2;
2013-02-23 19:44:13 +00:00
maintainers = with stdenv.lib.maintainers; [ marcweber peti ];
2013-02-23 19:44:13 +00:00
platforms = stdenv.lib.platforms.linux;
};
}