mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
30 lines
851 B
Nix
30 lines
851 B
Nix
{ stdenv, fetchurl, gtk2, glib, pkgconfig, libgnome, libgnomeui, vte
|
|
, curl, cdparanoia, libid3tag, ncurses, libtool }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "grip-4.1.1";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/grip/${name}.tar.gz";
|
|
sha256 = "1sbjgawb7qrinixybwi0adk7mpdfb565gkffp5gxxsw8fqd068fs";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [ gtk2 glib libgnome libgnomeui vte curl cdparanoia
|
|
libid3tag ncurses libtool ];
|
|
|
|
hardeningDisable = [ "format" ];
|
|
|
|
# glib-2.62 deprecations
|
|
NIX_CFLAGS_COMPILE = "-DGLIB_DISABLE_DEPRECATION_WARNINGS";
|
|
|
|
meta = {
|
|
description = "GTK-based audio CD player/ripper";
|
|
homepage = "http://nostatic.org/grip";
|
|
license = stdenv.lib.licenses.gpl2;
|
|
|
|
maintainers = with stdenv.lib.maintainers; [ marcweber peti ];
|
|
platforms = stdenv.lib.platforms.linux;
|
|
};
|
|
}
|