reco: init at 5.0.2, live-chart: init at 1.10.0, ryokucha: init at 0.3.1 (#335307)

This commit is contained in:
Aleksana
2024-10-21 18:37:44 +08:00
committed by GitHub
3 changed files with 153 additions and 0 deletions
+50
View File
@@ -0,0 +1,50 @@
{
lib,
stdenv,
fetchFromGitHub,
meson,
ninja,
pkg-config,
vala,
gtk4,
libgee,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "live-chart";
version = "1.10.0";
src = fetchFromGitHub {
owner = "lcallarec";
repo = "live-chart";
rev = finalAttrs.version;
hash = "sha256-SOZJ9sVrmsZybs5BVXWmqBJ/P7SZI/X8TGWHXGvXAU8=";
};
outputs = [
"out"
"dev"
];
nativeBuildInputs = [
meson
ninja
pkg-config
vala
];
buildInputs = [
gtk4
libgee
];
strictDeps = true;
meta = {
description = "Real-time charting library for Vala and GTK4 based on Cairo";
homepage = "https://github.com/lcallarec/live-chart";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ aleksana ];
platforms = lib.platforms.unix;
};
})
+57
View File
@@ -0,0 +1,57 @@
{
lib,
stdenv,
fetchFromGitHub,
meson,
ninja,
pkg-config,
vala,
wrapGAppsHook4,
libgee,
live-chart,
ryokucha,
pantheon,
gst_all_1,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "reco";
version = "5.0.2";
src = fetchFromGitHub {
owner = "ryonakano";
repo = "reco";
rev = finalAttrs.version;
hash = "sha256-uZAcZJLQH0MTI4NSJnZvzYPBFVXGBqAhsjVLAVP/ZwI=";
};
nativeBuildInputs = [
meson
ninja
pkg-config
vala
wrapGAppsHook4
];
buildInputs = [
libgee
live-chart
ryokucha
pantheon.granite7
gst_all_1.gstreamer
gst_all_1.gst-plugins-base
gst_all_1.gst-plugins-good
gst_all_1.gst-libav
];
mesonFlags = [ (lib.mesonBool "use_submodule" false) ];
meta = {
description = "Audio recorder focused on being concise and simple to use";
homepage = "https://github.com/ryonakano/reco";
license = lib.licenses.gpl3Plus;
mainProgram = "com.github.ryonakano.reco";
maintainers = with lib.maintainers; [ aleksana ];
platforms = lib.platforms.unix;
};
})
+46
View File
@@ -0,0 +1,46 @@
{
lib,
stdenv,
fetchFromGitHub,
meson,
ninja,
pkg-config,
vala,
gtk4,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "ryokucha";
version = "0.3.1";
src = fetchFromGitHub {
owner = "ryonakano";
repo = "ryokucha";
rev = finalAttrs.version;
hash = "sha256-bmN8ZiFjUXtWMrZz7BJtO/9TMjcc4d3x8EpFvhvsewY=";
};
outputs = [
"out"
"dev"
];
nativeBuildInputs = [
meson
ninja
pkg-config
vala
];
buildInputs = [ gtk4 ];
strictDeps = true;
meta = {
description = "GTK4 library that includes customized widgets";
homepage = "https://github.com/ryonakano/ryokucha";
license = lib.licenses.lgpl3Plus;
maintainers = with lib.maintainers; [ aleksana ];
platforms = lib.platforms.unix;
};
})