nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at python-updates 19 lines 438 B view raw
1{ lib, fetchFromGitHub }: 2rec { 3 version = "3.11.0"; 4 pyproject = true; 5 6 src = fetchFromGitHub { 7 owner = "openrazer"; 8 repo = "openrazer"; 9 tag = "v${version}"; 10 hash = "sha256-pk3nghd16jhdf7zokwMzBGwGtBU7ta4nSHsOoGxjD4w="; 11 }; 12 13 meta = { 14 homepage = "https://openrazer.github.io/"; 15 license = lib.licenses.gpl2Only; 16 maintainers = with lib.maintainers; [ evanjs ]; 17 platforms = lib.platforms.linux; 18 }; 19}