From 202ea9929b3296ed462e77d6172231df3963a0c6 Mon Sep 17 00:00:00 2001 From: xeals Date: Sat, 17 Oct 2020 16:56:17 +1100 Subject: [PATCH] core: clean up README, remove old shell.nix --- README.md | 4 ++-- shell.nix | 7 ------- 2 files changed, 2 insertions(+), 9 deletions(-) delete mode 100644 shell.nix diff --git a/README.md b/README.md index d633c27..1b5573d 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ in # e.g., for IntelliJ IDEA xeals.jetbrains.ideaCommunityWithPlugins (jpkgs: [ jpkgs.ideavim - jpgs.checkstyle-idea + jpkgs.checkstyle-idea ]) ``` @@ -42,4 +42,4 @@ The default package comes with nothing (which is not entirely useful -- this wil ## General issues - [ ] `spotify-ripper` does not build on stable NixOS channels before 20.09 when built with m4a or mp4 support, as `fdk-aac-encoder` is not available -- [ ] Due to weirdness in fixed output hashes, anything using `buildGoModule` and `buildRustPackage` will fail on unstable channels of Nixpkgs, and must be overridden if you want to use these packages on unstable channels +- [ ] Due to changes in toolchains affected fixed output hashes, anything using `buildGoModule` and `buildRustPackage` will fail on NixOS 20.03. Override the hashes of `vendor` and `cargoDeps` attributes as needed diff --git a/shell.nix b/shell.nix deleted file mode 100644 index 1599ca6..0000000 --- a/shell.nix +++ /dev/null @@ -1,7 +0,0 @@ -{ pkgs ? import {} }: - -pkgs.mkShell { - buildInputs = [ - pkgs.jsonnet pkgs.drone-cli - ]; -}