thinkpad-scripts: init at 4.12.0
This commit is contained in:
parent
4de58b617b
commit
9ab5fbfb96
22
pkgs/tools/misc/thinkpad-scripts/default.nix
Normal file
22
pkgs/tools/misc/thinkpad-scripts/default.nix
Normal file
@ -0,0 +1,22 @@
|
||||
{ lib, buildPythonPackage, fetchFromGitHub, python3Packages }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "thinkpad-scripts";
|
||||
version = "4.12.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "martin-ueding";
|
||||
repo = "thinkpad-scripts";
|
||||
rev = "v${version}";
|
||||
sha256 = "08adx8r5pwwazbnfahay42l5f203mmvcn2ipz5hg8myqc9jxm2ky";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = with python3Packages; [ setuptools ];
|
||||
|
||||
meta = {
|
||||
description = "Screen rotation, docking and other scripts for ThinkPad® X220 and X230 Tablet";
|
||||
homepage = "https://github.com/martin-ueding/thinkpad-scripts";
|
||||
license = lib.licenses.gpl2Plus;
|
||||
maintainers = with lib.maintainers; [ dawidsowa ];
|
||||
};
|
||||
}
|
@ -6653,6 +6653,8 @@ in
|
||||
|
||||
thin-provisioning-tools = callPackage ../tools/misc/thin-provisioning-tools { };
|
||||
|
||||
thinkpad-scripts = python3.pkgs.callPackage ../tools/misc/thinkpad-scripts { };
|
||||
|
||||
tiled = libsForQt5.callPackage ../applications/editors/tiled { };
|
||||
|
||||
tiledb = callPackage ../development/libraries/tiledb { };
|
||||
|
Loading…
Reference in New Issue
Block a user