Merge pull request #278285 from teatwig/win2xcur

win2xcur: init at 0.1.2
This commit is contained in:
Pascal Bach 2024-01-10 22:45:28 +01:00 committed by GitHub
commit 925cd27a43
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 29 additions and 0 deletions

View file

@ -18190,6 +18190,12 @@
githubId = 2389333;
name = "Andy Tockman";
};
teatwig = {
email = "nix@teatwig.net";
name = "tea";
github = "teatwig";
githubId = 18734648;
};
techknowlogick = {
email = "techknowlogick@gitea.com";
github = "techknowlogick";

View file

@ -0,0 +1,23 @@
{ lib, python3Packages, fetchFromGitHub }:
python3Packages.buildPythonPackage rec {
pname = "win2xcur";
version = "0.1.2";
src = fetchFromGitHub {
owner = "quantum5";
repo = "win2xcur";
rev = "v${version}";
sha256 = "sha256-OjLj+QYg8YOJzDq3Y6/uyEXlNWbPm8VA/b1yP9jT6Jo=";
};
propagatedBuildInputs = with python3Packages; [ numpy wand ];
meta = with lib; {
description = "Tools that convert cursors between the Windows (*.cur, *.ani) and Xcursor format";
homepage = "https://github.com/quantum5/win2xcur";
changelog = "https://github.com/quantum5/win2xcur/releases/tag/v${version}";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ teatwig ];
};
}