a19cd4ffb1
This reverts commit65a333600d. This wasn't tested for correctness with something like fodwatch [0], and should not have been (self-)merged so quickly, especially without further review. It also resulted in the breakage of at least one package [1] (and that's the one we know of and was caught). A few packages that were updated in between this commit and this revert were not reverted back to using `rev`, but other than that, this is a 1:1 revert. [0]: https://codeberg.org/raphaelr/fodwatch [1]: https://github.com/NixOS/nixpkgs/pull/396904 /758551e458
43 lines
850 B
Nix
43 lines
850 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitLab,
|
|
pkg-config,
|
|
cmake,
|
|
yaml-cpp,
|
|
libevdev,
|
|
udev,
|
|
boost,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "interception-tools";
|
|
version = "0.6.8";
|
|
src = fetchFromGitLab {
|
|
owner = "interception/linux";
|
|
repo = "tools";
|
|
rev = "v${version}";
|
|
hash = "sha256-jhdgfCWbkF+jD/iXsJ+fYKOtPymxcC46Q4w0aqpvcek=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
pkg-config
|
|
];
|
|
buildInputs = [
|
|
libevdev
|
|
udev
|
|
yaml-cpp
|
|
boost
|
|
];
|
|
|
|
meta = {
|
|
description = "Minimal composable infrastructure on top of libudev and libevdev";
|
|
homepage = "https://gitlab.com/interception/linux/tools";
|
|
changelog = "https://gitlab.com/interception/linux/tools/-/tags/v${version}";
|
|
license = lib.licenses.gpl3Only;
|
|
maintainers = [ lib.maintainers.vyp ];
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
}
|