Merge master into staging-next

This commit is contained in:
github-actions[bot]
2021-04-03 18:18:51 +00:00
committed by GitHub
90 changed files with 1869 additions and 3429 deletions
+2 -2
View File
@@ -2,13 +2,13 @@
buildGoModule rec {
pname = "chezmoi";
version = "2.0.5";
version = "2.0.7";
src = fetchFromGitHub {
owner = "twpayne";
repo = "chezmoi";
rev = "v${version}";
sha256 = "sha256-mq9kwkEeh+kVhiVy/h44oP3Rj819gGQDiMifSb7ryeY=";
sha256 = "sha256-mJJtkJ57rYEe1BWK3TWAMOar/IUUC9ybiccx81puHsE=";
};
vendorSha256 = "sha256-YU+t8GVsLYWONezUIB4NUrVxtYOmf/2b5v4v3VSYtBU=";
+33
View File
@@ -0,0 +1,33 @@
{ lib
, stdenv
, fetchFromSourcehut
, SDL2
}:
stdenv.mkDerivation rec {
pname = "clickclack";
version = "0.1.1";
src = fetchFromSourcehut {
owner = "~proycon";
repo = "clickclack";
rev = version;
sha256 = "1q8r0ng1bld5n82gh7my7ck90f4plf8vf019hm2wz475dl38izd5";
};
buildInputs = [
SDL2
];
makeFlags = [
"PREFIX=${placeholder "out"}"
];
meta = with lib; {
description = "A vibration/audio feedback tool to be used with virtual keyboards";
homepage = "https://git.sr.ht/~proycon/clickclack";
license = licenses.mit;
platforms = platforms.linux;
maintainers = with maintainers; [ dotlambda ];
};
}
+3 -3
View File
@@ -1,6 +1,6 @@
{ lib, fetchFromGitHub, pythonPackages, glibcLocales }:
{ lib, fetchFromGitHub, python3Packages, glibcLocales }:
pythonPackages.buildPythonApplication rec {
python3Packages.buildPythonApplication rec {
pname = "i3minator";
version = "0.0.4";
@@ -13,7 +13,7 @@ pythonPackages.buildPythonApplication rec {
LC_ALL = "en_US.UTF-8";
buildInputs = [ glibcLocales ];
propagatedBuildInputs = [ pythonPackages.pyyaml pythonPackages.i3-py ];
propagatedBuildInputs = [ python3Packages.pyyaml python3Packages.i3-py ];
# No tests
doCheck = false;