thinkpad-scripts: init at 4.12.0

This commit is contained in:
dawidsowa 2020-02-27 23:49:27 +01:00
parent 4de58b617b
commit 9ab5fbfb96
2 changed files with 24 additions and 0 deletions

View 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 ];
};
}

View file

@ -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 { };