mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-17 06:06:13 +03:00
librda: init at 0.0.5-unstable-2023-09-15
This commit is contained in:
parent
48d38a834f
commit
0a67210453
61
pkgs/by-name/li/librda/package.nix
Normal file
61
pkgs/by-name/li/librda/package.nix
Normal file
@ -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"
|
||||
];
|
||||
};
|
||||
})
|
Loading…
Reference in New Issue
Block a user