mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
23 lines
671 B
Nix
23 lines
671 B
Nix
{ 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 ];
|
|
};
|
|
}
|