Personal Nix User Repository
Go to file
xeals 14e18ac2d2
alacritty-ligatures: fix for building on unstable
The unpacking logic for cargoDeps is changed so that the filename
doesn't implicitly have a file suffix appended to it, so we have to
specify that it's a tarball manually. The output hash is updated to
match.
2020-10-17 15:35:24 +11:00
.github Initial commit 2020-10-17 12:39:29 +11:00
lib Initial commit 2020-10-17 12:39:29 +11:00
modules services: port amdgpu services from private config 2020-10-17 12:55:56 +11:00
overlays Initial commit 2020-10-17 12:39:29 +11:00
pkgs protonmail-bridge: fix for building on unstable 2020-10-17 15:34:29 +11:00
.envrc Initial commit 2020-10-17 12:39:29 +11:00
.gitignore Initial commit 2020-10-17 12:39:29 +11:00
.travis.yml ci: stable -> unstable 2020-10-17 15:34:16 +11:00
ci.nix Initial commit 2020-10-17 12:39:29 +11:00
default.nix alacritty-ligatures: fix for building on unstable 2020-10-17 15:35:24 +11:00
LICENSE Initial commit 2020-10-17 12:39:29 +11:00
overlay.nix core: fix overlay to merge package sets 2020-10-17 12:55:56 +11:00
README.md docs: update README 2020-10-17 12:55:53 +11:00
shell.nix Initial commit 2020-10-17 12:39:29 +11:00

nur-packages

My personal NUR repository

Build Status Cachix Cache

Noteworthy packages

Jetbrains with plugins

A fan of the Emacs/Vim/VSCode plugin builder? Now enjoy it with your favourite Jetbrains IDE!

The system is mostly proof-of-concept and there are a couple of issues with it at the moment, but it works for what is available in the repo.

Using

{ pkgs ? import <nixpkgs> {} }:
let
  xeals = import (builtins.fetchTarball "https://git.xeal.me/xeals/nur-packages/archive/master.tar.gz") {
    inherit pkgs;
  };
in
  # e.g., for IntelliJ IDEA
  xeals.jetbrains.ideaCommunityWithPlugins (jpkgs: [
    jpkgs.ideavim
    jpgs.checkstyle-idea
  ])

Issues

  • The plugin derivation overrides the base instead of extending it; this is really only an issue for the open-source IDEs, and only once they're actually built from source (instead of repackaging the JARs)
  • Plugins must be manually added to the repo; long-term, I'd really want some way to scrape them, or at least have a script to add and update

spotify-ripper

spotify-ripper is pretty flexible in the formats it supports, so the derivation allows you to customize which support packages to build with.

The default package comes with nothing (which is not entirely useful -- this will probably change at some point). See the builder for options.

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