add eslint and licensedigger

This commit is contained in:
Jonas Heinrich 2024-09-01 13:24:12 +02:00
parent 88b79bb78f
commit fb792c2d26
2 changed files with 9 additions and 46 deletions

View file

@ -7,9 +7,6 @@
nixpkgs.url = "github:onny/nixpkgs/hmr-enabler";
nixos-shell.url = "github:Mic92/nixos-shell";
keycloak-realms.url = "github:rorosen/nixpkgs/keycloak-realm-import";
# FIXME
licensedigger.url = "github:onny/nixpkgs/licensedigger";
eslint.url = "github:onny/nixpkgs/eslint";
};
outputs = { self, nixpkgs, nixos-shell, ... }@inputs: let
@ -32,16 +29,16 @@
devShells.x86_64-linux = {
default = with pkgs; mkShell {
nativeBuildInputs = with nodePackages; [
php84Packages.composer
nativeBuildInputs = with php84Packages; [
composer
php-cs-fixer
phpunit
nodejs
rollup
nodePackages.rollup
act
npm-check-updates
# FIXME
inputs.licensedigger.legacyPackages.x86_64-linux.licensedigger
(inputs.eslint.legacyPackages.x86_64-linux.eslint.overrideAttrs (oldAttrs: rec {
licensedigger
(eslint.overrideAttrs (oldAttrs: rec {
version = "8.57.0";
src = fetchFromGitHub {
owner = "eslint";