forked from mirrors/nixpkgs
gmtp: init at 1.3.10 (#24178)
This commit is contained in:
parent
91e74ed3b2
commit
77b5d22df3
|
@ -382,6 +382,7 @@
|
|||
pashev = "Igor Pashev <pashev.igor@gmail.com>";
|
||||
patternspandemic = "Brad Christensen <patternspandemic@live.com>";
|
||||
pawelpacana = "Paweł Pacana <pawel.pacana@gmail.com>";
|
||||
pbogdan = "Piotr Bogdan <ppbogdan@gmail.com>";
|
||||
periklis = "theopompos@gmail.com";
|
||||
pesterhazy = "Paulus Esterhazy <pesterhazy@gmail.com>";
|
||||
peterhoeg = "Peter Hoeg <peter@hoeg.com>";
|
||||
|
|
27
pkgs/applications/misc/gmtp/default.nix
Normal file
27
pkgs/applications/misc/gmtp/default.nix
Normal file
|
@ -0,0 +1,27 @@
|
|||
{ stdenv, fetchurl, pkgconfig, libmtp, libid3tag, flac, libvorbis, gtk3
|
||||
, gsettings_desktop_schemas, wrapGAppsHook
|
||||
}:
|
||||
|
||||
let version = "1.3.10"; in
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "gmtp-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/gmtp/gMTP-${version}/gmtp-${version}.tar.gz";
|
||||
sha256 = "b21b9a8e66ae7bb09fc70ac7e317a0e32aff3917371a7241dea73c41db1dd13b";
|
||||
};
|
||||
|
||||
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;
|
||||
};
|
||||
}
|
|
@ -13934,6 +13934,8 @@ with pkgs;
|
|||
|
||||
gmpc = callPackage ../applications/audio/gmpc {};
|
||||
|
||||
gmtp = callPackage ../applications/misc/gmtp {};
|
||||
|
||||
gnome-mpv = callPackage ../applications/video/gnome-mpv { };
|
||||
|
||||
gollum = callPackage ../applications/misc/gollum { };
|
||||
|
|
Loading…
Reference in a new issue