mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
Merge pull request #269247 from 2xsaiko/outgoing/louvre
louvre: init at 1.1.0-1
This commit is contained in:
commit
2530753c2c
3 changed files with 141 additions and 0 deletions
|
@ -4240,6 +4240,12 @@
|
|||
fingerprint = "B26F 9AD8 DA20 3392 EF87 C61A BB99 9F83 D9A1 9A36";
|
||||
}];
|
||||
};
|
||||
dblsaiko = {
|
||||
email = "me@dblsaiko.net";
|
||||
github = "2xsaiko";
|
||||
githubId = 3987560;
|
||||
name = "Marco Rebhan";
|
||||
};
|
||||
dbohdan = {
|
||||
email = "dbohdan@dbohdan.com";
|
||||
github = "dbohdan";
|
||||
|
|
73
pkgs/by-name/lo/louvre/package.nix
Normal file
73
pkgs/by-name/lo/louvre/package.nix
Normal file
|
@ -0,0 +1,73 @@
|
|||
{ lib
|
||||
, stdenv
|
||||
, fetchFromGitHub
|
||||
, meson
|
||||
, ninja
|
||||
, pkg-config
|
||||
, fontconfig
|
||||
, icu
|
||||
, libdrm
|
||||
, libGL
|
||||
, libinput
|
||||
, libX11
|
||||
, libXcursor
|
||||
, libxkbcommon
|
||||
, mesa
|
||||
, pixman
|
||||
, seatd
|
||||
, srm-cuarzo
|
||||
, udev
|
||||
, wayland
|
||||
, xorgproto
|
||||
}:
|
||||
stdenv.mkDerivation (self: {
|
||||
pname = "louvre";
|
||||
version = "1.1.0-1";
|
||||
rev = "v${self.version}";
|
||||
hash = "sha256-HwvX0ykl2+4MBcIixmEknFtsB0QC4w1QDzQz1589bl0=";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
inherit (self) rev hash;
|
||||
owner = "CuarzoSoftware";
|
||||
repo = "Louvre";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
meson
|
||||
ninja
|
||||
pkg-config
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
fontconfig
|
||||
icu
|
||||
libdrm
|
||||
libGL
|
||||
libinput
|
||||
libX11
|
||||
libXcursor
|
||||
libxkbcommon
|
||||
mesa
|
||||
pixman
|
||||
seatd
|
||||
srm-cuarzo
|
||||
udev
|
||||
wayland
|
||||
xorgproto
|
||||
];
|
||||
|
||||
outputs = [ "out" "dev" ];
|
||||
|
||||
preConfigure = ''
|
||||
# The root meson.build file is in src/
|
||||
cd src
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "C++ library for building Wayland compositors";
|
||||
homepage = "https://github.com/CuarzoSoftware/Louvre";
|
||||
mainProgram = "louvre-views";
|
||||
maintainers = [ lib.maintainers.dblsaiko ];
|
||||
platforms = lib.platforms.linux;
|
||||
};
|
||||
})
|
62
pkgs/by-name/sr/srm-cuarzo/package.nix
Normal file
62
pkgs/by-name/sr/srm-cuarzo/package.nix
Normal 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;
|
||||
};
|
||||
})
|
Loading…
Reference in a new issue