mirror of
https://github.com/KrumpetPirate/AAXtoMP3.git
synced 2024-11-18 03:08:57 +01:00
321991c470
Also add a script to automate this process by creating a JSON file based on the current state of the relevant channel <https://github.com/linz/geostore/pull/2130/files>.
26 lines
417 B
Nix
26 lines
417 B
Nix
let
|
|
pkgs =
|
|
import (
|
|
fetchTarball (
|
|
builtins.fromJSON (
|
|
builtins.readFile ./nixpkgs.json
|
|
)
|
|
)
|
|
) {
|
|
};
|
|
in
|
|
pkgs.mkShell {
|
|
packages = [
|
|
pkgs.alejandra
|
|
pkgs.bashInteractive
|
|
pkgs.cacert
|
|
pkgs.gitFull
|
|
pkgs.gitlint
|
|
pkgs.gnumake
|
|
pkgs.nix
|
|
pkgs.nixos-rebuild
|
|
pkgs.nodePackages.prettier
|
|
pkgs.pre-commit
|
|
];
|
|
}
|