expanding dev tools

This commit is contained in:
2025-05-18 15:24:55 -05:00
parent 7cebc21431
commit bc8948865a
3 changed files with 67 additions and 0 deletions

10
devtools/checkhash.nix Normal file
View File

@ -0,0 +1,10 @@
with import <nixpkgs> {};
let
url = "https://github.com/shiftkey/desktop/releases/download/release-3.2.1-linux1/GitHubDesktop-linux-3.2.1-linux1.AppImage";
in
builtins.fetchurl {
inherit url;
# intentionally use a bad hash to force Nix to tell you the correct one
sha256 = "0000000000000000000000000000000000000000000000000000";
}