Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove nix cruft #475

Merged
merged 6 commits into from
Sep 4, 2022
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
74 changes: 0 additions & 74 deletions flake.lock

This file was deleted.

34 changes: 0 additions & 34 deletions flake.nix

This file was deleted.

16 changes: 16 additions & 0 deletions shell.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
let
moz_overlay = import (builtins.fetchTarball https://github.com/mozilla/nixpkgs-mozilla/archive/master.tar.gz);
nixpkgs = import <nixpkgs> { overlays = [ moz_overlay ]; };
in
with nixpkgs;
stdenv.mkDerivation {
name = "ord-shell";
buildInputs = [
# to use the latest nightly:
nixpkgs.latest.rustChannels.stable.rust
clang
just
# to use the project's rust-toolchain file:
# (nixpkgs.rustChannelOf { rustToolchain = ./rust-toolchain; }).rust
];
}
jurraca marked this conversation as resolved.
Show resolved Hide resolved