Merge pull request #198043 from zendo/goodvibes
This commit is contained in:
commit
e27653d7c2
2 changed files with 63 additions and 0 deletions
61
pkgs/applications/audio/goodvibes/default.nix
Normal file
61
pkgs/applications/audio/goodvibes/default.nix
Normal file
|
@ -0,0 +1,61 @@
|
||||||
|
{ lib
|
||||||
|
, stdenv
|
||||||
|
, fetchFromGitLab
|
||||||
|
, meson
|
||||||
|
, ninja
|
||||||
|
, pkg-config
|
||||||
|
, glib
|
||||||
|
, gtk3
|
||||||
|
, libsoup
|
||||||
|
, keybinder3
|
||||||
|
, gst_all_1
|
||||||
|
, wrapGAppsHook
|
||||||
|
, appstream-glib
|
||||||
|
, desktop-file-utils
|
||||||
|
}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "goodvibes";
|
||||||
|
version = "0.7.5";
|
||||||
|
|
||||||
|
src = fetchFromGitLab {
|
||||||
|
owner = pname;
|
||||||
|
repo = pname;
|
||||||
|
rev = "v${version}";
|
||||||
|
hash = "sha256-CE9f0GnXr7wSpp8jyW0ZxGKx16r6tOaObzQXKcy5nPY=";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
meson
|
||||||
|
ninja
|
||||||
|
pkg-config
|
||||||
|
wrapGAppsHook
|
||||||
|
appstream-glib
|
||||||
|
desktop-file-utils
|
||||||
|
];
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
glib
|
||||||
|
gtk3
|
||||||
|
libsoup
|
||||||
|
keybinder3
|
||||||
|
] ++ (with gst_all_1; [
|
||||||
|
gstreamer
|
||||||
|
gst-plugins-base
|
||||||
|
gst-plugins-good
|
||||||
|
gst-plugins-bad
|
||||||
|
gst-plugins-ugly
|
||||||
|
]);
|
||||||
|
|
||||||
|
postPatch = ''
|
||||||
|
patchShebangs scripts
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "A lightweight internet radio player";
|
||||||
|
homepage = "https://gitlab.com/goodvibes/goodvibes";
|
||||||
|
license = licenses.gpl3Plus;
|
||||||
|
platforms = platforms.linux;
|
||||||
|
maintainers = with maintainers; [ zendo ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -28940,6 +28940,8 @@ with pkgs;
|
||||||
inherit (darwin.apple_sdk.frameworks) AppKit AudioToolbox;
|
inherit (darwin.apple_sdk.frameworks) AppKit AudioToolbox;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
goodvibes = callPackage ../applications/audio/goodvibes { };
|
||||||
|
|
||||||
googleearth-pro = libsForQt5.callPackage ../applications/misc/googleearth-pro { };
|
googleearth-pro = libsForQt5.callPackage ../applications/misc/googleearth-pro { };
|
||||||
|
|
||||||
google-chrome = callPackage ../applications/networking/browsers/google-chrome { };
|
google-chrome = callPackage ../applications/networking/browsers/google-chrome { };
|
||||||
|
|
Loading…
Reference in a new issue