55 lines
1.1 KiB
Nix
55 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
stdenv,
|
|
meson,
|
|
ninja,
|
|
pkg-config,
|
|
cairo,
|
|
glib,
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "gnome-monitor-config";
|
|
version = "0-unstable-2023-09-26";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jadahl";
|
|
repo = "gnome-monitor-config";
|
|
rev = "04b854e6411cd9ca75582c108aea63ae3c202f0e";
|
|
hash = "sha256-uVWhQ5SCyadDkeOd+pY2cYZAQ0ZvWMlgndcr1ZIEf50=";
|
|
};
|
|
|
|
strictDeps = true;
|
|
|
|
depsBuildBuild = [
|
|
pkg-config
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
meson
|
|
ninja
|
|
pkg-config
|
|
glib
|
|
];
|
|
|
|
buildInputs = [
|
|
cairo
|
|
glib
|
|
];
|
|
|
|
postPatch = ''
|
|
substituteInPlace src/meson.build \
|
|
--replace-fail "executable('gnome-monitor-config', src" \
|
|
"executable('gnome-monitor-config', src, install : true"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Program to help manage GNOME monitor configuration";
|
|
homepage = "https://github.com/jadahl/gnome-monitor-config";
|
|
license = licenses.gpl2Plus;
|
|
maintainers = with maintainers; [ aveltras ];
|
|
platforms = platforms.linux;
|
|
mainProgram = "gnome-monitor-config";
|
|
};
|
|
}
|