Merge pull request #92888 from JustinLovinger/update-caps2esc-to-0.1.3

caps2esc: 0.1.0 -> 0.1.3
This commit is contained in:
Yannis Koutras 2020-07-11 12:15:31 +02:00 committed by GitHub
commit 2ae43f84fe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,17 +1,17 @@
{ stdenv, fetchurl, cmake }: { stdenv, fetchFromGitLab, cmake }:
let stdenv.mkDerivation rec {
version = "0.1.0"; pname = "caps2esc";
pname = "interception-tools-caps2esc"; version = "0.1.3";
in stdenv.mkDerivation {
name = "${pname}-${version}";
src = fetchurl { src = fetchFromGitLab {
url = "https://gitlab.com/interception/linux/plugins/caps2esc/repository/v${version}/archive.tar.gz"; owner = "interception/linux/plugins";
sha256 = "1fdxqp54gwsrm2c63168l256nfwdk4mvgr7nlwdv62wd3l7zzrg8"; repo = pname;
rev = "v${version}";
sha256 = "10xv56vh5h3lxyii3ni166ddv1sz2pylrjmdwxhb4gd2p5zgl1ji";
}; };
buildInputs = [ cmake ]; nativeBuildInputs = [ cmake ];
meta = with stdenv.lib; { meta = with stdenv.lib; {
homepage = "https://gitlab.com/interception/linux/plugins/caps2esc"; homepage = "https://gitlab.com/interception/linux/plugins/caps2esc";