mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-13 21:50:33 +03:00
gmtp: remove
This commit is contained in:
parent
c92c230c35
commit
d49f90a01c
3 changed files with 1 additions and 41 deletions
|
@ -1,39 +0,0 @@
|
||||||
{ lib, stdenv, fetchurl, pkg-config, libmtp, libid3tag, flac, libvorbis, gtk3
|
|
||||||
, gsettings-desktop-schemas, wrapGAppsHook3
|
|
||||||
}:
|
|
||||||
|
|
||||||
let version = "1.3.11"; in
|
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
|
||||||
pname = "gmtp";
|
|
||||||
inherit version;
|
|
||||||
|
|
||||||
src = fetchurl {
|
|
||||||
url = "mirror://sourceforge/gmtp/gMTP-${version}/gmtp-${version}.tar.gz";
|
|
||||||
sha256 = "04q6byyq002fhzkc2rkkahwh5b6272xakaj4m3vwm8la8jf0r0ss";
|
|
||||||
};
|
|
||||||
|
|
||||||
nativeBuildInputs = [ pkg-config wrapGAppsHook3 ];
|
|
||||||
buildInputs = [ libmtp libid3tag flac libvorbis gtk3 gsettings-desktop-schemas ];
|
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
|
||||||
|
|
||||||
# Workaround build failure on -fno-common toolchains:
|
|
||||||
# ld: gmtp-preferences.o:src/main.h:72: multiple definition of
|
|
||||||
# `scrolledwindowMain'; gmtp-about.o:src/main.h:72: first defined here
|
|
||||||
# TODO: can be removed when 1.4.0 is released.
|
|
||||||
env.NIX_CFLAGS_COMPILE = "-fcommon";
|
|
||||||
|
|
||||||
preFixup = ''
|
|
||||||
gappsWrapperArgs+=(--add-flags "--datapath $out/share");
|
|
||||||
'';
|
|
||||||
|
|
||||||
meta = {
|
|
||||||
description = "Simple MP3 and Media player client for UNIX and UNIX like systems";
|
|
||||||
mainProgram = "gmtp";
|
|
||||||
homepage = "https://gmtp.sourceforge.io";
|
|
||||||
platforms = lib.platforms.linux;
|
|
||||||
maintainers = [ ];
|
|
||||||
license = lib.licenses.bsd3;
|
|
||||||
};
|
|
||||||
}
|
|
|
@ -520,6 +520,7 @@ mapAliases ({
|
||||||
gfortran48 = throw "'gfortran48' has been removed from nixpkgs"; # Added 2024-09-10
|
gfortran48 = throw "'gfortran48' has been removed from nixpkgs"; # Added 2024-09-10
|
||||||
gfortran49 = throw "'gfortran49' has been removed from nixpkgs"; # Added 2024-09-11
|
gfortran49 = throw "'gfortran49' has been removed from nixpkgs"; # Added 2024-09-11
|
||||||
ghostwriter = libsForQt5.kdeGear.ghostwriter; # Added 2023-03-18
|
ghostwriter = libsForQt5.kdeGear.ghostwriter; # Added 2023-03-18
|
||||||
|
gmtp = throw "'gmtp' has been removed due to lack of maintenance upstream. Consider using 'gnome-music' instead"; # Added 2024-09-14
|
||||||
go-dependency-manager = throw "'go-dependency-manager' is unmaintained and the go community now uses 'go.mod' mostly instead"; # Added 2023-10-04
|
go-dependency-manager = throw "'go-dependency-manager' is unmaintained and the go community now uses 'go.mod' mostly instead"; # Added 2023-10-04
|
||||||
gotktrix = throw "'gotktrix' has been removed, as it was broken and unmaintained"; # Added 2023-12-06
|
gotktrix = throw "'gotktrix' has been removed, as it was broken and unmaintained"; # Added 2023-12-06
|
||||||
git-backup = throw "git-backup has been removed, as it has been abandoned upstream. Consider using git-backup-go instead.";
|
git-backup = throw "git-backup has been removed, as it has been abandoned upstream. Consider using git-backup-go instead.";
|
||||||
|
|
|
@ -30365,8 +30365,6 @@ with pkgs;
|
||||||
|
|
||||||
gmpc = callPackage ../applications/audio/gmpc { };
|
gmpc = callPackage ../applications/audio/gmpc { };
|
||||||
|
|
||||||
gmtp = callPackage ../applications/misc/gmtp { };
|
|
||||||
|
|
||||||
gnomecast = callPackage ../applications/video/gnomecast { };
|
gnomecast = callPackage ../applications/video/gnomecast { };
|
||||||
|
|
||||||
gnome-recipes = callPackage ../applications/misc/gnome-recipes { };
|
gnome-recipes = callPackage ../applications/misc/gnome-recipes { };
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue