nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

treewide: set sourceProvenance for gradle-built packages

these presumably contain binary jars in their deps

+44
+4
pkgs/applications/networking/instant-messengers/signald/default.nix
··· 103 103 clients. 104 104 ''; 105 105 homepage = "https://signald.org"; 106 + sourceProvenance = with sourceTypes; [ 107 + fromSource 108 + binaryBytecode # deps 109 + ]; 106 110 license = licenses.gpl3Plus; 107 111 maintainers = with maintainers; [ expipiplus1 ma27 ]; 108 112 platforms = [ "x86_64-linux" "aarch64-linux" ];
+4
pkgs/applications/networking/p2p/frostwire/default.nix
··· 87 87 meta = with lib; { 88 88 homepage = "https://www.frostwire.com/"; 89 89 description = "BitTorrent Client and Cloud File Downloader"; 90 + sourceProvenance = with sourceTypes; [ 91 + fromSource 92 + binaryBytecode # deps 93 + ]; 90 94 license = licenses.gpl2; 91 95 maintainers = with maintainers; [ gavin ]; 92 96 platforms = [ "x86_64-darwin" "x86_64-linux" "i686-linux" ];
+4
pkgs/development/tools/scenebuilder/default.nix
··· 109 109 broken = stdenv.isDarwin; 110 110 description = "A visual, drag'n'drop, layout tool for designing JavaFX application user interfaces."; 111 111 homepage = "https://gluonhq.com/products/scene-builder/"; 112 + sourceProvenance = with sourceTypes; [ 113 + fromSource 114 + binaryBytecode # deps 115 + ]; 112 116 license = licenses.bsd3; 113 117 maintainers = with maintainers; [ wirew0rm ]; 114 118 platforms = platforms.all;
+4
pkgs/development/tools/scenic-view/default.nix
··· 104 104 This lets you find bugs and get things pixel perfect without having to do the compile-check-compile dance. 105 105 ''; 106 106 homepage = "https://github.com/JonathanGiles/scenic-view/"; 107 + sourceProvenance = with sourceTypes; [ 108 + fromSource 109 + binaryBytecode # deps 110 + ]; 107 111 license = licenses.gpl3Plus; 108 112 maintainers = with maintainers; [ wirew0rm ]; 109 113 platforms = platforms.all;
+4
pkgs/games/mindustry/default.nix
··· 199 199 homepage = "https://mindustrygame.github.io/"; 200 200 downloadPage = "https://github.com/Anuken/Mindustry/releases"; 201 201 description = "A sandbox tower defense game"; 202 + sourceProvenance = with sourceTypes; [ 203 + fromSource 204 + binaryBytecode # deps 205 + ]; 202 206 license = licenses.gpl3Plus; 203 207 maintainers = with maintainers; [ fgaz petabyteboy ]; 204 208 platforms = platforms.x86_64;
+4
pkgs/games/shattered-pixel-dungeon/default.nix
··· 80 80 homepage = "https://shatteredpixel.com/"; 81 81 downloadPage = "https://github.com/00-Evan/shattered-pixel-dungeon/releases"; 82 82 description = "Traditional roguelike game with pixel-art graphics and simple interface"; 83 + sourceProvenance = with sourceTypes; [ 84 + fromSource 85 + binaryBytecode # deps 86 + ]; 83 87 license = licenses.gpl3Plus; 84 88 maintainers = with maintainers; [ fgaz ]; 85 89 platforms = platforms.all;
+4
pkgs/servers/ma1sd/default.nix
··· 64 64 meta = with lib; { 65 65 description = "a federated matrix identity server; fork of mxisd"; 66 66 homepage = "https://github.com/ma1uta/ma1sd"; 67 + sourceProvenance = with sourceTypes; [ 68 + fromSource 69 + binaryBytecode # deps 70 + ]; 67 71 license = licenses.agpl3Only; 68 72 maintainers = with maintainers; [ mguentner ]; 69 73 platforms = platforms.all;
+4
pkgs/tools/security/ghidra/build.nix
··· 171 171 description = "A software reverse engineering (SRE) suite of tools developed by NSA's Research Directorate in support of the Cybersecurity mission"; 172 172 homepage = "https://ghidra-sre.org/"; 173 173 platforms = [ "x86_64-linux" "x86_64-darwin" ]; 174 + sourceProvenance = with sourceTypes; [ 175 + fromSource 176 + binaryBytecode # deps 177 + ]; 174 178 license = licenses.asl20; 175 179 maintainers = [ "roblabla" ]; 176 180 };
+4
pkgs/tools/security/jadx/default.nix
··· 103 103 Command line and GUI tools for produce Java source code from Android Dex 104 104 and Apk files. 105 105 ''; 106 + sourceProvenance = with sourceTypes; [ 107 + fromSource 108 + binaryBytecode # deps 109 + ]; 106 110 license = licenses.asl20; 107 111 platforms = platforms.unix; 108 112 maintainers = with maintainers; [ delroth ];
+4
pkgs/tools/security/jd-gui/default.nix
··· 102 102 meta = with lib; { 103 103 description = "Fast Java Decompiler with powerful GUI"; 104 104 homepage = "https://java-decompiler.github.io/"; 105 + sourceProvenance = with sourceTypes; [ 106 + fromSource 107 + binaryBytecode # deps 108 + ]; 105 109 license = licenses.gpl3; 106 110 platforms = platforms.unix; 107 111 maintainers = [ maintainers.thoughtpolice ];
+4
pkgs/tools/typesetting/pdftk/default.nix
··· 88 88 meta = with lib; { 89 89 description = "Command-line tool for working with PDFs"; 90 90 homepage = "https://gitlab.com/pdftk-java/pdftk"; 91 + sourceProvenance = with sourceTypes; [ 92 + fromSource 93 + binaryBytecode # deps 94 + ]; 91 95 license = licenses.gpl2Plus; 92 96 maintainers = with maintainers; [ raskin averelld ]; 93 97 platforms = platforms.unix;