e0b44a09b8
The latest release of libyamlcpp in nixpkgs does not build because it uses an older version of boost than the one in nixpkgs and therefore expects a particular header file which does not exist in the latest boost anymore. For this reason, a later (git) version of libyamlcpp is used here (which actually doesn't even require boost). The substituteInPlace in the prePatch phase is needed because libevdev places its headers in non-standard places, meaning Nix cannot normally find them. The `cut` command removes the first two "-I" characters from the output of `pkg-config`. This needs to be in the prePatch phase because otherwise Nix will patch these lines to `/var/empty`, meaning you would have less specific replacement (in case other lines are also patched to `/var/empty`). I wrote the patch. (I believe it is NixOS specific.)
24 lines
687 B
Nix
24 lines
687 B
Nix
{ stdenv, fetchurl, cmake }:
|
|
|
|
let
|
|
version = "0.1.0";
|
|
pname = "interception-tools-caps2esc";
|
|
in stdenv.mkDerivation {
|
|
name = "${pname}-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "https://gitlab.com/interception/linux/plugins/caps2esc/repository/v${version}/archive.tar.gz";
|
|
sha256 = "1fdxqp54gwsrm2c63168l256nfwdk4mvgr7nlwdv62wd3l7zzrg8";
|
|
};
|
|
|
|
buildInputs = [ cmake ];
|
|
|
|
meta = {
|
|
homepage = "https://gitlab.com/interception/linux/plugins/caps2esc";
|
|
description = "Transforming the most useless key ever into the most useful one";
|
|
license = stdenv.lib.licenses.mit;
|
|
maintainers = stdenv.lib.maintainers.vyp;
|
|
platforms = stdenv.lib.platforms.linux;
|
|
};
|
|
}
|