neofetch for your did document

Compare changes

Choose any two refs to compare.

Changed files
+18 -5
.tangled
workflows
+18 -5
.tangled/workflows/release.yml
··· 7 7 dependencies: 8 8 nixpkgs: 9 9 - gcc 10 - - rustc 11 - - cargo 12 - 10 + github:NixOS/nixpkgs/nixpkgs-unstable: 11 + - rustc 12 + - cargo 13 13 steps: 14 14 - name: "Log in to crates.io." 15 15 command: cargo login $ATFETCH_API_KEY 16 16 - name: "Build for release" 17 - command: cargo build --release 17 + command: | 18 + export PATH="$HOME/.nix-profile/bin:$PATH" 19 + 20 + nix-channel --add https://nixos.org/channels/nixpkgs-unstable nixpkgs 21 + 22 + nix-channel --update 23 + 24 + nix-shell -p pkg-config openssl --run ' 25 + export PKG_CONFIG_PATH="$(pkg-config --variable pc_path pkg-config)" 26 + export OPENSSL_DIR="$(nix-build --no-out-link "<nixpkgs>" -A openssl.dev)" 27 + export OPENSSL_NO_VENDOR=1 28 + export OPENSSL_LIB_DIR="$(nix-build --no-out-link "<nixpkgs>" -A openssl.out)/lib" 29 + cargo build --release 30 + ' 18 31 - name: "Package for crates.io" 19 - command: cargo Package 32 + command: cargo package 20 33 - name: "Publish" 21 34 command: cargo publish