mirror of https://github.com/rm-dr/daisy
Compare commits
No commits in common. "32463ad6aa309b62cbb145c147a61c619af0e5f3" and "49b88af2bbfee55ac608b4728e648233605b6bcd" have entirely different histories.
32463ad6aa
...
49b88af2bb
1
TODO.md
1
TODO.md
|
@ -6,7 +6,6 @@
|
||||||
- push
|
- push
|
||||||
- merge
|
- merge
|
||||||
- git tag -a v1.0.0 -m "Version 1.0.0" on merge commit
|
- git tag -a v1.0.0 -m "Version 1.0.0" on merge commit
|
||||||
- delete branch?
|
|
||||||
- cargo publish
|
- cargo publish
|
||||||
- Update packages
|
- Update packages
|
||||||
- Build wasm & push changes
|
- Build wasm & push changes
|
||||||
|
|
15
shell.nix
15
shell.nix
|
@ -1,22 +1,11 @@
|
||||||
{ nixpkgs ? import <nixpkgs> { }}:
|
|
||||||
let
|
let
|
||||||
# If you set hash to an empty string, you'll get
|
pkgs = import (fetchTarball "https://github.com/NixOS/nixpkgs/archive/f155f0cf4ea43c4e3c8918d2d327d44777b6cad4.tar.gz") {};
|
||||||
# an error with the correct hash.
|
|
||||||
pinnedPkgs = nixpkgs.fetchFromGitHub {
|
|
||||||
owner = "NixOS";
|
|
||||||
repo = "nixpkgs";
|
|
||||||
rev = "4ecab3273592f27479a583fb6d975d4aba3486fe";
|
|
||||||
sha256 = "btHN1czJ6rzteeCuE/PNrdssqYD2nIA4w48miQAFloM=";
|
|
||||||
};
|
|
||||||
pkgs = import pinnedPkgs {};
|
|
||||||
|
|
||||||
in pkgs.mkShell {
|
in pkgs.mkShell {
|
||||||
buildInputs = with pkgs; [
|
buildInputs = with pkgs; [
|
||||||
cargo
|
cargo
|
||||||
rustc
|
rustc
|
||||||
rustfmt
|
rustfmt
|
||||||
rust-analyzer
|
m4
|
||||||
wasm-pack
|
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue