srm-cuarzo: init at 0.4.0-1

This commit is contained in:
Marco Rebhan 2023-11-22 18:20:56 +01:00
parent 236bdb034a
commit e93fba74a2
No known key found for this signature in database

View file

@ -0,0 +1,62 @@
{ lib
, stdenv
, fetchFromGitHub
, meson
, ninja
, pkg-config
, libdisplay-info
, libdrm
, libGL
, libinput
, mesa
, seatd
, udev
}:
stdenv.mkDerivation (self: {
pname = "srm-cuarzo";
version = "0.4.0-1";
rev = "v${self.version}";
hash = "sha256-PWtDSBYw62sfyN2lpd7NY8SbqDrt5IN1rdLZRtDfals=";
src = fetchFromGitHub {
inherit (self) rev hash;
owner = "CuarzoSoftware";
repo = "SRM";
};
nativeBuildInputs = [
meson
ninja
pkg-config
];
buildInputs = [
libdisplay-info
libdrm
libGL
libinput
mesa
seatd
udev
];
outputs = [ "out" "dev" ];
postPatch = ''
substituteInPlace src/meson.build \
--replace "/usr/include/drm" "${libdrm.dev}/include/drm" \
--replace "/usr/include/libdrm" "${libdrm.dev}/include/libdrm"
'';
preConfigure = ''
# The root meson.build file is in src/
cd src
'';
meta = {
description = "Simple Rendering Manager";
homepage = "https://github.com/CuarzoSoftware/SRM";
maintainers = [ lib.maintainers.dblsaiko ];
platforms = lib.platforms.linux;
};
})