Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

Merge pull request #268964 from NixOS/revert-254716-bazecor

Revert "bazecor: init at 1.3.2"

authored by Silvan Mosberger and committed by GitHub b91fcd40 5e696b3e

-22
-22
pkgs/by-name/ba/bazecor/package.nix
··· 1 - { lib 2 - , appimageTools 3 - , fetchurl 4 - }: 5 - 6 - appimageTools.wrapType2 rec { 7 - pname = "bazecor"; 8 - version = "1.3.2"; 9 - 10 - src = fetchurl { 11 - url = "https://github.com/Dygmalab/Bazecor/releases/download/bazecor-${version}/Bazecor-${version}-x64.AppImage"; 12 - hash = "sha256-afalUj3EqHX6ctCZgwGRf4kqv9AeVS+PAaBA4iK9jKk="; 13 - }; 14 - 15 - meta = with lib; { 16 - description = "Graphical configurator for Dygma Products"; 17 - homepage = "https://github.com/Dygmalab/Bazecor"; 18 - changelog = "https://github.com/Dygmalab/Bazecor/releases/tag/bazecor-${version}"; 19 - license = licenses.gpl3Only; 20 - maintainers = with maintainers; [ kashw2 ]; 21 - }; 22 - }
···