From 3c2f8dd12ec6c246f0fd7e7d66579e2f7b5ebe77 Mon Sep 17 00:00:00 2001 From: Piotr Kwiecinski <2151333+piotrkwiecinski@users.noreply.github.com> Date: Mon, 17 Jun 2024 23:35:02 +0200 Subject: [PATCH 1/4] maintainers: add piotrkwiecinski --- maintainers/maintainer-list.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index 98f1da0ed024..e11be148caa2 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -16348,6 +16348,12 @@ fingerprint = "D03B 218C AE77 1F77 D7F9 20D9 823A 6154 4264 08D3"; }]; }; + piotrkwiecinski = { + email = "piokwiecinski+nixpkgs@gmail.com"; + github = "piotrkwiecinski"; + githubId = 2151333; + name = "Piotr Kwiecinski"; + }; piperswe = { email = "contact@piperswe.me"; github = "piperswe"; From 89b6ee2b7616372ecb25ab8245345881b723fefb Mon Sep 17 00:00:00 2001 From: Piotr Kwiecinski <2151333+piotrkwiecinski@users.noreply.github.com> Date: Mon, 17 Jun 2024 23:40:08 +0200 Subject: [PATCH 2/4] eask: migrate to pkgs/by-name --- .../tools/eask/default.nix => by-name/ea/eask/package.nix} | 0 pkgs/top-level/all-packages.nix | 2 -- 2 files changed, 2 deletions(-) rename pkgs/{development/tools/eask/default.nix => by-name/ea/eask/package.nix} (100%) diff --git a/pkgs/development/tools/eask/default.nix b/pkgs/by-name/ea/eask/package.nix similarity index 100% rename from pkgs/development/tools/eask/default.nix rename to pkgs/by-name/ea/eask/package.nix diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 5500c6652448..df4f8845f4de 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -18547,8 +18547,6 @@ with pkgs; dwz = callPackage ../development/tools/misc/dwz { }; - eask = callPackage ../development/tools/eask { }; - easypdkprog = callPackage ../development/embedded/easypdkprog { }; editorconfig-checker = callPackage ../development/tools/misc/editorconfig-checker { }; From 428cd145eb5849c338238a0b0d15f27f7f26b01d Mon Sep 17 00:00:00 2001 From: Piotr Kwiecinski <2151333+piotrkwiecinski@users.noreply.github.com> Date: Mon, 17 Jun 2024 23:48:53 +0200 Subject: [PATCH 3/4] eask: reformat with nixfmt-rfc-style --- pkgs/by-name/ea/eask/package.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/ea/eask/package.nix b/pkgs/by-name/ea/eask/package.nix index 4c1e10d473a2..43bce20ba73c 100644 --- a/pkgs/by-name/ea/eask/package.nix +++ b/pkgs/by-name/ea/eask/package.nix @@ -1,6 +1,7 @@ -{ lib -, buildNpmPackage -, fetchFromGitHub +{ + lib, + buildNpmPackage, + fetchFromGitHub, }: buildNpmPackage rec { From 59f5a90d522279a272bf701dcddb9048a5bc5e7c Mon Sep 17 00:00:00 2001 From: Piotr Kwiecinski <2151333+piotrkwiecinski@users.noreply.github.com> Date: Mon, 17 Jun 2024 23:51:32 +0200 Subject: [PATCH 4/4] eask: add piotrkwiecinski to maintainers --- pkgs/by-name/ea/eask/package.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pkgs/by-name/ea/eask/package.nix b/pkgs/by-name/ea/eask/package.nix index 43bce20ba73c..3f7fb419795b 100644 --- a/pkgs/by-name/ea/eask/package.nix +++ b/pkgs/by-name/ea/eask/package.nix @@ -25,6 +25,9 @@ buildNpmPackage rec { homepage = "https://emacs-eask.github.io/"; license = lib.licenses.gpl3Plus; mainProgram = "eask"; - maintainers = with lib.maintainers; [ jcs090218 ]; + maintainers = with lib.maintainers; [ + jcs090218 + piotrkwiecinski + ]; }; }