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

33 lines
897 B
Nix
Raw Normal View History

2017-03-22 15:20:16 +01:00
{ stdenv, fetchurl, pkgconfig, libmtp, libid3tag, flac, libvorbis, gtk3
, gsettings-desktop-schemas, wrapGAppsHook
2017-03-22 15:20:16 +01:00
}:
let version = "1.3.11"; in
2017-03-22 15:20:16 +01:00
stdenv.mkDerivation {
2019-08-13 23:52:01 +02:00
pname = "gmtp";
inherit version;
2017-03-22 15:20:16 +01:00
src = fetchurl {
url = "mirror://sourceforge/gmtp/gMTP-${version}/gmtp-${version}.tar.gz";
sha256 = "04q6byyq002fhzkc2rkkahwh5b6272xakaj4m3vwm8la8jf0r0ss";
2017-03-22 15:20:16 +01:00
};
nativeBuildInputs = [ pkgconfig wrapGAppsHook ];
buildInputs = [ libmtp libid3tag flac libvorbis gtk3 gsettings-desktop-schemas ];
2017-03-22 15:20:16 +01:00
enableParallelBuilding = true;
preFixup = ''
gappsWrapperArgs+=(--add-flags "--datapath \"$out/share\"");
'';
2017-03-22 15:20:16 +01:00
meta = {
description = "A simple MP3 and Media player client for UNIX and UNIX like systems";
homepage = "https://gmtp.sourceforge.io";
2017-03-22 15:20:16 +01:00
platforms = stdenv.lib.platforms.linux;
2020-02-09 10:49:47 +01:00
maintainers = [ ];
2017-03-22 15:20:16 +01:00
license = stdenv.lib.licenses.bsd3;
};
}