diff --git a/pkgs/applications/misc/grip/default.nix b/pkgs/applications/misc/grip/default.nix index 5ebe7765e50c..a30778762b27 100644 --- a/pkgs/applications/misc/grip/default.nix +++ b/pkgs/applications/misc/grip/default.nix @@ -1,27 +1,45 @@ -{ lib, stdenv, fetchurl, gtk2, glib, pkg-config, libgnome, libgnomeui, vte -, curl, cdparanoia, libid3tag, ncurses, libtool }: +{ lib +, stdenv +, fetchurl +, gtk2 +, glib +, pkg-config +, libgnome +, libgnomeui +, vte +, curl +, cdparanoia +, libid3tag +, ncurses +, libtool +}: stdenv.mkDerivation rec { - name = "grip-4.2.0"; + name = "grip-4.2.1"; src = fetchurl { url = "mirror://sourceforge/grip/${name}.tar.gz"; - sha256 = "1si5kidwg0i2jg0brzyvjrzw24v3km2hdgd4kda1adzq81a3p1cs"; + sha256 = "sha256-3bFJURPbq9rzLsJCppRjSARhcOJxC4eSfw5VxvZgQ3Q="; }; - nativeBuildInputs = [ pkg-config ]; - buildInputs = [ gtk2 glib libgnome libgnomeui vte curl cdparanoia - libid3tag ncurses libtool ]; - - hardeningDisable = [ "format" ]; - - # glib-2.62 deprecations - NIX_CFLAGS_COMPILE = "-DGLIB_DISABLE_DEPRECATION_WARNINGS"; + nativeBuildInputs = [ pkg-config libtool ]; + buildInputs = [ + gtk2 + glib + libgnome + libgnomeui + vte + curl + cdparanoia + libid3tag + ncurses + ]; + enableParallelBuilding = true; meta = { description = "GTK-based audio CD player/ripper"; homepage = "http://nostatic.org/grip"; - license = lib.licenses.gpl2; + license = lib.licenses.gpl2Plus; maintainers = with lib.maintainers; [ marcweber peti ]; platforms = lib.platforms.linux;