Merge pull request #326368 from dvaerum/patch-1
cobang: add support for aarch64-linux
This commit is contained in:
@@ -5536,6 +5536,12 @@
|
||||
name = "Duncan Dean";
|
||||
keys = [ { fingerprint = "9484 44FC E03B 05BA 5AB0 591E C37B 1C1D 44C7 86EE"; } ];
|
||||
};
|
||||
dvaerum = {
|
||||
email = "nixpkgs-maintainer@varum.dk";
|
||||
github = "dvaerum";
|
||||
githubId = 6872940;
|
||||
name = "Dennis Værum";
|
||||
};
|
||||
dvn0 = {
|
||||
email = "git@dvn.me";
|
||||
github = "dvn0";
|
||||
|
||||
@@ -97,8 +97,8 @@ buildPythonApplication rec {
|
||||
description = "QR code scanner desktop app for Linux";
|
||||
homepage = "https://github.com/hongquan/CoBang";
|
||||
license = licenses.gpl3Only;
|
||||
maintainers = [ ];
|
||||
maintainers = with maintainers; [ aleksana dvaerum ];
|
||||
mainProgram = "cobang";
|
||||
platforms = [ "x86_64-linux" ];
|
||||
platforms = lib.platforms.linux;
|
||||
};
|
||||
}
|
||||
|
||||
@@ -2,7 +2,6 @@
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchFromGitHub,
|
||||
pythonAtLeast,
|
||||
setuptools,
|
||||
pillow,
|
||||
zbar,
|
||||
@@ -14,9 +13,6 @@ buildPythonPackage rec {
|
||||
version = "0.23.93";
|
||||
pyproject = true;
|
||||
|
||||
# distutils usage in setup.py
|
||||
disabled = pythonAtLeast "3.12";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "mchehab";
|
||||
repo = "zbar";
|
||||
|
||||
Reference in New Issue
Block a user