unnaturalscrollwheels: init at 1.3.0
This commit is contained in:
parent
5cbff28ae6
commit
43aea8aa44
2 changed files with 39 additions and 0 deletions
37
pkgs/tools/inputmethods/unnaturalscrollwheels/default.nix
Normal file
37
pkgs/tools/inputmethods/unnaturalscrollwheels/default.nix
Normal file
|
@ -0,0 +1,37 @@
|
|||
{ lib
|
||||
, stdenvNoCC
|
||||
, fetchurl
|
||||
, _7zz
|
||||
}:
|
||||
stdenvNoCC.mkDerivation (finalAttrs: {
|
||||
pname = "unnaturalscrollwheels";
|
||||
version = "1.3.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/ther0n/UnnaturalScrollWheels/releases/download/${finalAttrs.version}/UnnaturalScrollWheels-${finalAttrs.version}.dmg";
|
||||
sha256 = "1c6vlf0kc7diz0hb1fmrqaj7kzzfvr65zcchz6xv5cxf0md4n70r";
|
||||
};
|
||||
sourceRoot = ".";
|
||||
|
||||
# APFS format is unsupported by undmg
|
||||
nativeBuildInputs = [ _7zz ];
|
||||
unpackCmd = "7zz x $curSrc";
|
||||
|
||||
installPhase = ''
|
||||
runHook preInstall
|
||||
|
||||
mkdir -p $out/Applications
|
||||
cp -r *.app $out/Applications
|
||||
|
||||
runHook postInstall
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Invert scroll direction for physical scroll wheels";
|
||||
homepage = "https://github.com/ther0n/UnnaturalScrollWheels";
|
||||
license = licenses.gpl3Plus;
|
||||
sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
|
||||
maintainers = with maintainers; [ emilytrau Enzime ];
|
||||
platforms = platforms.darwin;
|
||||
};
|
||||
})
|
|
@ -14162,6 +14162,8 @@ with pkgs;
|
|||
|
||||
unittest-cpp = callPackage ../development/libraries/unittest-cpp { };
|
||||
|
||||
unnaturalscrollwheels = callPackage ../tools/inputmethods/unnaturalscrollwheels { };
|
||||
|
||||
unrar = callPackage ../tools/archivers/unrar { };
|
||||
|
||||
unrar-wrapper = python3Packages.callPackage ../tools/archivers/unrar-wrapper { };
|
||||
|
|
Loading…
Reference in a new issue