Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: e1efaa951f0a
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 2ae43f84fe0b
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Jul 10, 2020

  1. Verified

    This commit was signed with the committer’s verified signature.
    siriobalmelli Sirio Balmelli
    Copy the full SHA
    97a2dbd View commit details

Commits on Jul 11, 2020

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

    caps2esc: 0.1.0 -> 0.1.3
    jokogr authored Jul 11, 2020
    Copy the full SHA
    2ae43f8 View commit details
Showing with 10 additions and 10 deletions.
  1. +10 −10 pkgs/tools/inputmethods/interception-tools/caps2esc.nix
20 changes: 10 additions & 10 deletions pkgs/tools/inputmethods/interception-tools/caps2esc.nix
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
{ stdenv, fetchurl, cmake }:
{ stdenv, fetchFromGitLab, cmake }:

let
version = "0.1.0";
pname = "interception-tools-caps2esc";
in stdenv.mkDerivation {
name = "${pname}-${version}";
stdenv.mkDerivation rec {
pname = "caps2esc";
version = "0.1.3";

src = fetchurl {
url = "https://gitlab.com/interception/linux/plugins/caps2esc/repository/v${version}/archive.tar.gz";
sha256 = "1fdxqp54gwsrm2c63168l256nfwdk4mvgr7nlwdv62wd3l7zzrg8";
src = fetchFromGitLab {
owner = "interception/linux/plugins";
repo = pname;
rev = "v${version}";
sha256 = "10xv56vh5h3lxyii3ni166ddv1sz2pylrjmdwxhb4gd2p5zgl1ji";
};

buildInputs = [ cmake ];
nativeBuildInputs = [ cmake ];

meta = with stdenv.lib; {
homepage = "https://gitlab.com/interception/linux/plugins/caps2esc";