nixpkgs-suyu/pkgs/applications/video/kooha/default.nix

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

86 lines
1.6 KiB
Nix
Raw Normal View History

2021-11-01 01:38:39 +01:00
{ lib
, stdenv
, fetchFromGitHub
, appstream-glib
, desktop-file-utils
, glib
, gobject-introspection
, gst_all_1
, gtk4
, libadwaita
, libpulseaudio
, librsvg
, meson
, ninja
, pkg-config
, python3
, rustPlatform
, wayland
, wrapGAppsHook
}:
2021-04-11 23:16:24 +02:00
2021-11-01 01:38:39 +01:00
stdenv.mkDerivation rec {
2021-04-11 23:16:24 +02:00
pname = "kooha";
2021-11-01 01:38:39 +01:00
version = "2.0.1";
2021-04-11 23:16:24 +02:00
src = fetchFromGitHub {
owner = "SeaDve";
repo = "Kooha";
rev = "v${version}";
2021-11-01 01:38:39 +01:00
sha256 = "05ynpwjdpl7zp9f17zhhvb59rbz3gd7hc0amla1g85ldgfxbgl00";
2021-04-11 23:16:24 +02:00
};
2021-11-01 01:38:39 +01:00
cargoDeps = rustPlatform.fetchCargoTarball {
inherit src;
name = "${pname}-${version}";
hash = "sha256:16zf6vb001z7xdv2g4kpmb2vqsmaql2cpsx1rl9zrfhpl2z6frs9";
};
2021-04-11 23:16:24 +02:00
nativeBuildInputs = [
appstream-glib
desktop-file-utils
meson
ninja
python3
pkg-config
2021-11-01 01:38:39 +01:00
rustPlatform.cargoSetupHook
rustPlatform.rust.cargo
rustPlatform.rust.rustc
wayland
2021-04-11 23:16:24 +02:00
wrapGAppsHook
];
2021-11-01 01:38:39 +01:00
buildInputs = [
glib
gobject-introspection
gst_all_1.gstreamer
gst_all_1.gst-plugins-base
gtk4
libadwaita
libpulseaudio
librsvg
];
2021-04-11 23:16:24 +02:00
propagatedBuildInputs = [ python3.pkgs.pygobject3 ];
strictDeps = false;
# Fixes https://github.com/NixOS/nixpkgs/issues/31168
postPatch = ''
2021-11-01 01:38:39 +01:00
patchShebangs build-aux/meson_post_install.py
substituteInPlace meson.build --replace '>= 1.0.0-alpha.1' '>= 1.0.0'
2021-04-11 23:16:24 +02:00
'';
2021-05-24 05:52:17 +02:00
installCheckPhase = ''
$out/bin/kooha --help
'';
2021-04-11 23:16:24 +02:00
meta = with lib; {
description = "Simple screen recorder";
homepage = "https://github.com/SeaDve/Kooha";
license = licenses.gpl3Only;
platforms = platforms.linux;
maintainers = with maintainers; [ austinbutler ];
};
}