Compare commits

..

No commits in common. "32463ad6aa309b62cbb145c147a61c619af0e5f3" and "49b88af2bbfee55ac608b4728e648233605b6bcd" have entirely different histories.

2 changed files with 2 additions and 14 deletions

View File

@ -6,7 +6,6 @@
- push
- merge
- git tag -a v1.0.0 -m "Version 1.0.0" on merge commit
- delete branch?
- cargo publish
- Update packages
- Build wasm & push changes

View File

@ -1,22 +1,11 @@
{ nixpkgs ? import <nixpkgs> { }}:
let
# If you set hash to an empty string, you'll get
# an error with the correct hash.
pinnedPkgs = nixpkgs.fetchFromGitHub {
owner = "NixOS";
repo = "nixpkgs";
rev = "4ecab3273592f27479a583fb6d975d4aba3486fe";
sha256 = "btHN1czJ6rzteeCuE/PNrdssqYD2nIA4w48miQAFloM=";
};
pkgs = import pinnedPkgs {};
pkgs = import (fetchTarball "https://github.com/NixOS/nixpkgs/archive/f155f0cf4ea43c4e3c8918d2d327d44777b6cad4.tar.gz") {};
in pkgs.mkShell {
buildInputs = with pkgs; [
cargo
rustc
rustfmt
rust-analyzer
wasm-pack
m4
];
}