librda: init at 0.0.5-unstable-2023-09-15

This commit is contained in:
OPNA2608 2023-12-02 18:36:41 +01:00
parent 48d38a834f
commit 0a67210453

@ -0,0 +1,61 @@
{ stdenv
, lib
, fetchFromGitHub
, testers
, autoreconfHook
, glib
, gobject-introspection
, gtk3
, intltool
, pkg-config
}:
stdenv.mkDerivation (finalAttrs: {
pname = "librda";
version = "0.0.5-unstable-2023-09-15";
src = fetchFromGitHub {
owner = "ArcticaProject";
repo = "librda";
rev = "d7ed1368145e39b0c761947a32fa50493e70f554";
hash = "sha256-k6dmwIndLy9S7f0AU7FIm1S7MYfyvDuhMLMuNgHGsYo=";
};
outputs = [
"out"
"dev"
"bin"
];
strictDeps = true;
nativeBuildInputs = [
autoreconfHook
glib
gobject-introspection
intltool
pkg-config
];
buildInputs = [
gtk3
];
enableParallelBuilding = true;
doCheck = stdenv.buildPlatform.canExecute stdenv.hostPlatform;
passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage;
meta = with lib; {
description = "Remote Desktop Awareness Shared Library";
homepage = "https://github.com/ArcticaProject/librda";
license = licenses.gpl2Plus;
mainProgram = "rdacheck";
maintainers = with maintainers; [ OPNA2608 ];
platforms = platforms.linux;
pkgConfigModules = [
"rda"
];
};
})