summary refs log tree commit diff
path: root/pkgs/by-name/ba/bazecor/package.nix
blob: efc62cf353d8319b0207462a48f3e483686bf122 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ lib
, appimageTools
, fetchurl
}:

appimageTools.wrapType2 rec {
  pname = "bazecor";
  version = "1.3.2";

  src = fetchurl {
    url = "https://github.com/Dygmalab/Bazecor/releases/download/bazecor-${version}/Bazecor-${version}-x64.AppImage";
    hash = "sha256-afalUj3EqHX6ctCZgwGRf4kqv9AeVS+PAaBA4iK9jKk=";
  };

  meta = with lib; {
    description = "Graphical configurator for Dygma Products";
    homepage = "https://github.com/Dygmalab/Bazecor";
    changelog = "https://github.com/Dygmalab/Bazecor/releases/tag/bazecor-${version}";
    license = licenses.gpl3Only;
    maintainers = with maintainers; [ kashw2 ];
  };
}