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