393235f9d6
Semi-automatic update. These checks were done: - built on NixOS - Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.) - found 1.3.11 with grep in /nix/store/8lp6lwxfy7zq94jd2f26vgxc1zs0scfm-gmtp-1.3.11 - found 1.3.11 in filename of file in /nix/store/8lp6lwxfy7zq94jd2f26vgxc1zs0scfm-gmtp-1.3.11
28 lines
830 B
Nix
28 lines
830 B
Nix
{ stdenv, fetchurl, pkgconfig, libmtp, libid3tag, flac, libvorbis, gtk3
|
|
, gsettings-desktop-schemas, wrapGAppsHook
|
|
}:
|
|
|
|
let version = "1.3.11"; in
|
|
|
|
stdenv.mkDerivation {
|
|
name = "gmtp-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/gmtp/gMTP-${version}/gmtp-${version}.tar.gz";
|
|
sha256 = "04q6byyq002fhzkc2rkkahwh5b6272xakaj4m3vwm8la8jf0r0ss";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig wrapGAppsHook ];
|
|
buildInputs = [ libmtp libid3tag flac libvorbis gtk3 gsettings-desktop-schemas ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = {
|
|
description = "A simple MP3 and Media player client for UNIX and UNIX like systems.";
|
|
homepage = https://gmtp.sourceforge.io;
|
|
platforms = stdenv.lib.platforms.linux;
|
|
maintainers = [ stdenv.lib.maintainers.pbogdan ];
|
|
license = stdenv.lib.licenses.bsd3;
|
|
};
|
|
}
|