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

30 lines
837 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, gtk2, glib, pkg-config, libgnome, libgnomeui, vte
, curl, cdparanoia, libid3tag, ncurses, libtool }:
2013-02-23 11:44:13 -08:00
stdenv.mkDerivation rec {
2020-09-23 03:01:09 -07:00
name = "grip-4.2.0";
src = fetchurl {
2013-02-23 11:44:13 -08:00
url = "mirror://sourceforge/grip/${name}.tar.gz";
2020-09-23 03:01:09 -07:00
sha256 = "1si5kidwg0i2jg0brzyvjrzw24v3km2hdgd4kda1adzq81a3p1cs";
};
nativeBuildInputs = [ pkg-config ];
buildInputs = [ gtk2 glib libgnome libgnomeui vte curl cdparanoia
libid3tag ncurses libtool ];
hardeningDisable = [ "format" ];
2016-02-10 16:47:33 -08:00
2019-10-03 11:17:01 -07:00
# glib-2.62 deprecations
2019-10-29 19:23:29 -07:00
NIX_CFLAGS_COMPILE = "-DGLIB_DISABLE_DEPRECATION_WARNINGS";
2019-10-03 11:17:01 -07:00
meta = {
description = "GTK-based audio CD player/ripper";
homepage = "http://nostatic.org/grip";
2021-01-14 21:42:41 -08:00
license = lib.licenses.gpl2;
2013-02-23 11:44:13 -08:00
2021-01-14 21:42:41 -08:00
maintainers = with lib.maintainers; [ marcweber peti ];
platforms = lib.platforms.linux;
};
}