nixpkgs/pkgs/desktops/enlightenment/rage/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

48 lines
977 B
Nix
Raw Normal View History

2021-12-27 22:13:49 +00:00
{ lib
, stdenv
, fetchurl
, meson
, ninja
, pkg-config
, efl
, gst_all_1
, wrapGAppsHook
2022-10-27 13:35:32 +00:00
, directoryListingUpdater
2021-12-27 22:13:49 +00:00
}:
2016-08-22 22:46:56 +00:00
stdenv.mkDerivation rec {
2019-08-28 12:40:12 +00:00
pname = "rage";
2021-12-27 22:13:49 +00:00
version = "0.4.0";
src = fetchurl {
2019-08-28 12:40:12 +00:00
url = "http://download.enlightenment.org/rel/apps/${pname}/${pname}-${version}.tar.xz";
2021-12-27 22:13:49 +00:00
sha256 = "03yal7ajh57x2jhmygc6msf3gzvqkpmzkqzj6dnam5sim8cq9rbw";
};
2016-08-22 22:46:56 +00:00
nativeBuildInputs = [
2017-12-30 08:58:05 +00:00
meson
ninja
2021-01-17 02:21:50 +00:00
pkg-config
2016-09-04 10:25:21 +00:00
wrapGAppsHook
2016-08-22 22:46:56 +00:00
];
2016-09-04 10:25:21 +00:00
buildInputs = [
efl
gst_all_1.gstreamer
gst_all_1.gst-plugins-base
gst_all_1.gst-plugins-good
gst_all_1.gst-plugins-bad
gst_all_1.gst-libav
];
2022-10-27 13:35:32 +00:00
passthru.updateScript = directoryListingUpdater { };
2021-12-27 22:13:49 +00:00
meta = with lib; {
description = "Video and audio player along the lines of mplayer";
homepage = "https://enlightenment.org/";
2021-12-27 22:13:49 +00:00
license = licenses.bsd2;
platforms = platforms.linux;
2022-04-14 14:27:30 +00:00
maintainers = with maintainers; [ matejc ftrvxmtrx ] ++ teams.enlightenment.members;
};
}