Skip to content

Commit 020aabb

Browse files
committed
fix: flake check not working locally on linux
When running `flake check` there was an error: ``` error: undefined variable 'samrose' ``` Remove `maintainers = with maintainers; [ samrose ];` to solve this.
1 parent 6e38ed0 commit 020aabb

37 files changed

+13
-50
lines changed

nix/docs/adding-new-package.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,6 @@ buildPgrxExtension_0_11_3 rec {
131131
meta = with lib; {
132132
description = "JSON Schema Validation for PostgreSQL";
133133
homepage = "https://github.com/supabase/${pname}";
134-
maintainers = with maintainers; [ samrose ];
135134
platforms = postgresql.meta.platforms;
136135
license = licenses.postgresql;
137136
};

nix/ext/hypopg.nix

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ stdenv.mkDerivation rec {
2424
meta = with lib; {
2525
description = "Hypothetical Indexes for PostgreSQL";
2626
homepage = "https://github.com/HypoPG/${pname}";
27-
maintainers = with maintainers; [ samrose ];
2827
platforms = postgresql.meta.platforms;
2928
license = licenses.postgresql;
3029
};

nix/ext/index_advisor.nix

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ stdenv.mkDerivation rec {
2323
meta = with lib; {
2424
description = "Recommend indexes to improve query performance in PostgreSQL";
2525
homepage = "https://github.com/olirice/index_advisor";
26-
maintainers = with maintainers; [ samrose ];
2726
platforms = postgresql.meta.platforms;
2827
license = licenses.postgresql;
2928
};

nix/ext/mecab-naist-jdic/default.nix

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,21 +21,20 @@ stdenv.mkDerivation rec {
2121
${mecab}/libexec/mecab/mecab-dict-index -d . -o . -f UTF-8 -t utf-8
2222
runHook postBuild
2323
'';
24-
24+
2525
installPhase = ''
2626
runHook preInstall
27-
27+
2828
mkdir -p $out/lib/mecab/dic/naist-jdic
2929
cp *.dic *.bin *.def $out/lib/mecab/dic/naist-jdic/
30-
30+
3131
runHook postInstall
3232
'';
33-
33+
3434
meta = with lib; {
3535
description = "Naist Japanese Dictionary for MeCab";
3636
homepage = "https://taku910.github.io/mecab/";
3737
license = licenses.gpl2;
3838
platforms = platforms.unix;
39-
maintainers = with maintainers; [ samrose ];
4039
};
41-
}
40+
}

nix/ext/orioledb.nix

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,24 +14,23 @@ stdenv.mkDerivation rec {
1414
buildPhase = "make USE_PGXS=1 ORIOLEDB_PATCHSET_VERSION=5";
1515
installPhase = ''
1616
runHook preInstall
17-
17+
1818
mkdir -p $out/{lib,share/postgresql/extension}
1919
2020
# Copy the extension library
2121
cp orioledb${postgresql.dlSuffix} $out/lib/
22-
22+
2323
# Copy sql files from the sql directory
2424
cp sql/*.sql $out/share/postgresql/extension/
25-
25+
2626
# Copy control file
2727
cp orioledb.control $out/share/postgresql/extension/
28-
28+
2929
runHook postInstall
3030
'';
3131
doCheck = true;
3232
meta = with lib; {
3333
description = "orioledb";
34-
maintainers = with maintainers; [ samrose ];
3534
platforms = postgresql.meta.platforms;
3635
license = licenses.postgresql;
3736
};

nix/ext/pg-safeupdate.nix

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,5 @@ stdenv.mkDerivation rec {
2424
platforms = postgresql.meta.platforms;
2525
license = licenses.postgresql;
2626
broken = versionOlder postgresql.version "14";
27-
maintainers = with maintainers; [ samrose ];
2827
};
2928
}

nix/ext/pg_backtrace.nix

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ stdenv.mkDerivation rec {
2626
meta = with lib; {
2727
description = "Updated fork of pg_backtrace";
2828
homepage = "https://github.com/pashkinelfe/pg_backtrace";
29-
maintainers = with maintainers; [ samrose ];
3029
platforms = postgresql.meta.platforms;
3130
license = licenses.postgresql;
3231
};

nix/ext/pg_cron.nix

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ stdenv.mkDerivation rec {
2525
description = "Run Cron jobs through PostgreSQL";
2626
homepage = "https://github.com/citusdata/pg_cron";
2727
changelog = "https://github.com/citusdata/pg_cron/raw/v${version}/CHANGELOG.md";
28-
maintainers = with maintainers; [ samrose ];
2928
platforms = postgresql.meta.platforms;
3029
license = licenses.postgresql;
3130
};

nix/ext/pg_graphql.nix

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,12 @@ buildPgrxExtension_0_12_9 rec {
3434
};
3535
CARGO_PROFILE_RELEASE_BUILD_OVERRIDE_DEBUG = true;
3636

37-
37+
3838
doCheck = false;
3939

4040
meta = with lib; {
4141
description = "GraphQL support for PostreSQL";
4242
homepage = "https://github.com/supabase/${pname}";
43-
maintainers = with maintainers; [ samrose ];
4443
platforms = postgresql.meta.platforms;
4544
license = licenses.postgresql;
4645
};

nix/ext/pg_hashids.nix

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ stdenv.mkDerivation rec {
2424
meta = with lib; {
2525
description = "Generate short unique IDs in PostgreSQL";
2626
homepage = "https://github.com/iCyberon/pg_hashids";
27-
maintainers = with maintainers; [ samrose ];
2827
platforms = postgresql.meta.platforms;
2928
license = licenses.postgresql;
3029
};

0 commit comments

Comments
 (0)