2017-09-02 08:17:53 +02:00
|
|
|
{ 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 ];
|
|
|
|
|
2017-12-05 12:57:11 +01:00
|
|
|
meta = with stdenv.lib; {
|
2017-09-02 08:17:53 +02:00
|
|
|
homepage = "https://gitlab.com/interception/linux/plugins/caps2esc";
|
|
|
|
description = "Transforming the most useless key ever into the most useful one";
|
2017-12-05 12:57:11 +01:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = [ maintainers.vyp ];
|
|
|
|
platforms = platforms.linux;
|
2017-09-02 08:17:53 +02:00
|
|
|
};
|
|
|
|
}
|