gnuk: set as broken, use correct homepage in meta and remove nested with expression

Signed-off-by: Fernando Rodrigues <alpha@sigmasquadron.net>

Changed files
+8 -5
pkgs
misc
+8 -5
pkgs/misc/gnuk/default.nix
··· 7 7 makeWrapper, 8 8 python3Packages, 9 9 10 - # Extra options 10 + # Default FSIJ IDs 11 11 vid ? "234b", 12 12 pid ? "0000", 13 13 }: ··· 30 30 binutils-arm-embedded 31 31 makeWrapper 32 32 ]; 33 + 33 34 buildInputs = with python3Packages; [ 34 35 python 35 36 pyusb ··· 61 62 chmod +x $out/bin/{unlock,flash} 62 63 ''; 63 64 64 - meta = with lib; { 65 - homepage = "https://www.fsij.org/doc-gnuk/"; 65 + meta = { 66 + homepage = "https://www.fsij.org/category/gnuk.html"; 66 67 description = "Implementation of USB cryptographic token for gpg"; 67 - license = licenses.gpl3; 68 - platforms = with platforms; linux; 68 + license = lib.licenses.gpl3; 69 + platforms = lib.platforms.linux; 70 + maintainers = [ ]; 71 + broken = true; # Needs Picolib, which is not packaged in Nixpkgs. 69 72 }; 70 73 })