Commit 28d85f71 authored by tea's avatar tea
Browse files

win2xcur: init at 0.1.2

parent d21c6424
Loading
Loading
Loading
Loading
+23 −0
Original line number Diff line number Diff line
{ 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 ];
  };
}