mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 08:53:21 +00:00
2641d97cbf
Reproduction script: # Bulk rewrite ./maintainers/scripts/sha-to-sri.py pkgs/by-name # Revert some packages which will need manual intervention for n in amdvlk azure-cli cargo-profiler corefonts flatito fluxcd gist perf_data_converter protoc-gen-js solana-cli swt verible; do git checkout -- "pkgs/by-name/${n:0:2}/${n}" done
24 lines
712 B
Nix
24 lines
712 B
Nix
{ lib, python3Packages, fetchFromGitHub }:
|
|
|
|
python3Packages.buildPythonPackage rec {
|
|
pname = "win2xcur";
|
|
version = "0.1.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "quantum5";
|
|
repo = "win2xcur";
|
|
rev = "v${version}";
|
|
hash = "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 ];
|
|
};
|
|
}
|