core: clean up README, remove old shell.nix

This commit is contained in:
xeals 2020-10-17 16:56:17 +11:00
parent bdaa2ab259
commit 202ea9929b
Signed by: xeals
GPG Key ID: A498C7AF27EC6B5C
2 changed files with 2 additions and 9 deletions

View File

@ -24,7 +24,7 @@ in
# e.g., for IntelliJ IDEA # e.g., for IntelliJ IDEA
xeals.jetbrains.ideaCommunityWithPlugins (jpkgs: [ xeals.jetbrains.ideaCommunityWithPlugins (jpkgs: [
jpkgs.ideavim 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 ## 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 - [ ] `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

View File

@ -1,7 +0,0 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = [
pkgs.jsonnet pkgs.drone-cli
];
}