2016-09-11 21:24:51 +00:00
|
|
|
{ stdenv, fetchurl, gtk2, glib, pkgconfig, libgnome, libgnomeui, vte
|
2012-03-18 09:24:42 +00:00
|
|
|
, curl, cdparanoia, libid3tag, ncurses, libtool }:
|
2009-09-20 17:33:12 +00:00
|
|
|
|
2013-02-23 19:44:13 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2020-02-08 08:53:40 +00:00
|
|
|
name = "grip-4.1.0";
|
2009-09-20 17:01:31 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2013-02-23 19:44:13 +00:00
|
|
|
url = "mirror://sourceforge/grip/${name}.tar.gz";
|
2020-02-08 08:53:40 +00:00
|
|
|
sha256 = "0iy7bcyrxm7zyrxah06qyxdshkgq6yqkadlw211j2qzld38a79j5";
|
2009-09-20 17:01:31 +00:00
|
|
|
};
|
|
|
|
|
2017-09-05 21:26:13 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ gtk2 glib libgnome libgnomeui vte curl cdparanoia
|
2012-03-18 09:24:42 +00:00
|
|
|
libid3tag ncurses libtool ];
|
2009-09-20 17:01:31 +00:00
|
|
|
|
2016-02-26 17:38:15 +00:00
|
|
|
hardeningDisable = [ "format" ];
|
2016-02-11 00:47:33 +00:00
|
|
|
|
2019-10-03 18:17:01 +00:00
|
|
|
# glib-2.62 deprecations
|
2019-10-30 02:23:29 +00:00
|
|
|
NIX_CFLAGS_COMPILE = "-DGLIB_DISABLE_DEPRECATION_WARNINGS";
|
2019-10-03 18:17:01 +00:00
|
|
|
|
2011-03-24 11:45:37 +00:00
|
|
|
meta = {
|
2019-09-03 22:49:40 +00:00
|
|
|
description = "GTK-based audio CD player/ripper";
|
2017-08-01 20:03:30 +00:00
|
|
|
homepage = http://nostatic.org/grip;
|
2014-06-19 04:19:00 +00:00
|
|
|
license = stdenv.lib.licenses.gpl2;
|
2013-02-23 19:44:13 +00:00
|
|
|
|
2016-05-16 20:30:20 +00:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ marcweber peti ];
|
2013-02-23 19:44:13 +00:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2009-09-20 17:01:31 +00:00
|
|
|
};
|
|
|
|
}
|