summary refs log tree commit diff
path: root/pkgs/applications/misc/gmtp/default.nix
blob: 5ed69e7bc69ee5d4ebae9b573475601a3c35898f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{ stdenv, fetchurl, pkgconfig, libmtp, libid3tag, flac, libvorbis, gtk3
, gsettings-desktop-schemas, wrapGAppsHook
}:

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 = [ pkgconfig wrapGAppsHook ];
  buildInputs = [ libmtp libid3tag flac libvorbis gtk3 gsettings-desktop-schemas ];

  enableParallelBuilding = true;

  preFixup = ''
    gappsWrapperArgs+=(--add-flags "--datapath \"$out/share\"");
  '';

  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 = [ ];
    license = stdenv.lib.licenses.bsd3;
  };
}