2021-06-01 06:03:37 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchurl
|
|
|
|
, gtk2
|
|
|
|
, glib
|
|
|
|
, pkg-config
|
|
|
|
, libgnome
|
|
|
|
, libgnomeui
|
|
|
|
, vte
|
|
|
|
, curl
|
|
|
|
, cdparanoia
|
|
|
|
, libid3tag
|
|
|
|
, ncurses
|
|
|
|
, libtool
|
|
|
|
}:
|
2009-09-20 17:33:12 +00:00
|
|
|
|
2013-02-23 19:44:13 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2021-07-08 18:29:27 +00:00
|
|
|
name = "grip-4.2.2";
|
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";
|
2021-07-08 18:29:27 +00:00
|
|
|
sha256 = "sha256-nXtGgJeNYM8lyllNi9UdmsnVcHOCXfryWmKGZ9QFTHE=";
|
2009-09-20 17:01:31 +00:00
|
|
|
};
|
|
|
|
|
2021-06-01 06:03:37 +00:00
|
|
|
nativeBuildInputs = [ pkg-config libtool ];
|
|
|
|
buildInputs = [
|
|
|
|
gtk2
|
|
|
|
glib
|
|
|
|
libgnome
|
|
|
|
libgnomeui
|
|
|
|
vte
|
|
|
|
curl
|
|
|
|
cdparanoia
|
|
|
|
libid3tag
|
|
|
|
ncurses
|
|
|
|
];
|
|
|
|
enableParallelBuilding = true;
|
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";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "http://nostatic.org/grip";
|
2021-06-01 06:03:37 +00:00
|
|
|
license = lib.licenses.gpl2Plus;
|
2013-02-23 19:44:13 +00:00
|
|
|
|
2021-10-14 08:59:33 +00:00
|
|
|
maintainers = with lib.maintainers; [ marcweber ];
|
2021-01-15 05:42:41 +00:00
|
|
|
platforms = lib.platforms.linux;
|
2009-09-20 17:01:31 +00:00
|
|
|
};
|
|
|
|
}
|