1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

cobang: set platform to support lib.platforms.linux

I have built cobang on the architecture `aarch64-linux` and it works for me.
Since the program is written in python I will assume that it will work on all Linux architectures so I have set `platform` to support `lib.platforms.linux`
This commit is contained in:
Dennis Værum 2024-07-31 17:19:21 +02:00 committed by Dennis Vestergaard Værum
parent d92725b029
commit c8510e5cf2

View file

@ -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;
};
}