nixpkgs/pkgs/applications/misc/grip/default.nix

30 lines
853 B
Nix
Raw Normal View History

{ stdenv, fetchurl, gtk2, glib, pkgconfig, libgnome, libgnomeui, vte
, curl, cdparanoia, libid3tag, ncurses, libtool }:
2013-02-23 19:44:13 +00:00
stdenv.mkDerivation rec {
2019-12-08 10:56:22 +00:00
name = "grip-4.0.1";
src = fetchurl {
2013-02-23 19:44:13 +00:00
url = "mirror://sourceforge/grip/${name}.tar.gz";
2019-12-08 10:56:22 +00:00
sha256 = "0blh5j3d4g16bhsqmhv71qhbsyyzcqywzpqsjjiiw465mjlwxka6";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ gtk2 glib libgnome libgnomeui vte curl cdparanoia
libid3tag ncurses libtool ];
hardeningDisable = [ "format" ];
2016-02-11 00:47:33 +00:00
2019-10-03 18:17:01 +00:00
# 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;
2013-02-23 19:44:13 +00:00
maintainers = with stdenv.lib.maintainers; [ marcweber peti ];
2013-02-23 19:44:13 +00:00
platforms = stdenv.lib.platforms.linux;
};
}