mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
60 lines
1 KiB
Nix
60 lines
1 KiB
Nix
{ stdenv
|
|
, lib
|
|
, fetchFromGitHub
|
|
, cmake
|
|
, meson
|
|
, ninja
|
|
, pkg-config
|
|
, doctest
|
|
, glm
|
|
, libevdev
|
|
, libxml2
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "wf-config";
|
|
version = "0.9.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "WayfireWM";
|
|
repo = "wf-config";
|
|
rev = "v${finalAttrs.version}";
|
|
hash = "sha256-5HejuluCTsRsnHuaMCTnCPkbFvT/IcLkfNGjnXnZjJ0=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
meson
|
|
ninja
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs = [
|
|
libevdev
|
|
libxml2
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
glm
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
cmake
|
|
doctest
|
|
];
|
|
# CMake is just used for finding doctest.
|
|
dontUseCmakeConfigure = true;
|
|
|
|
mesonFlags = [
|
|
(lib.mesonEnable "tests" (stdenv.buildPlatform.canExecute stdenv.hostPlatform))
|
|
];
|
|
|
|
doCheck = true;
|
|
|
|
meta = {
|
|
homepage = "https://github.com/WayfireWM/wf-config";
|
|
description = "Library for managing configuration files, written for Wayfire";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ wucke13 rewine ];
|
|
platforms = lib.platforms.unix;
|
|
};
|
|
})
|