forked from mirrors/nixpkgs
maintainers: fix previously uncaught name issues
This commit is contained in:
parent
64cf1e79dd
commit
6c3b36212a
5 changed files with 9 additions and 9 deletions
|
@ -32,8 +32,9 @@ let
|
||||||
|
|
||||||
in {
|
in {
|
||||||
name = "dokuwiki";
|
name = "dokuwiki";
|
||||||
meta.maintainers = with pkgs.lib.maintainers; [ "1000101" ];
|
meta = with pkgs.stdenv.lib; {
|
||||||
|
maintainers = with maintainers; [ maintainers."1000101" ];
|
||||||
|
};
|
||||||
machine = { ... }: {
|
machine = { ... }: {
|
||||||
services.dokuwiki."site1.local" = {
|
services.dokuwiki."site1.local" = {
|
||||||
aclUse = false;
|
aclUse = false;
|
||||||
|
|
|
@ -1,9 +1,8 @@
|
||||||
import ./make-test-python.nix ({ pkgs, ... }: {
|
import ./make-test-python.nix ({ pkgs, ... }: {
|
||||||
name = "trezord";
|
name = "trezord";
|
||||||
meta = with pkgs.stdenv.lib.maintainers; {
|
meta = with pkgs.stdenv.lib; {
|
||||||
maintainers = [ mmahut "1000101" ];
|
maintainers = with maintainers; [ mmahut maintainers."1000101" ];
|
||||||
};
|
};
|
||||||
|
|
||||||
nodes = {
|
nodes = {
|
||||||
machine = { ... }: {
|
machine = { ... }: {
|
||||||
services.trezord.enable = true;
|
services.trezord.enable = true;
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
import ./make-test-python.nix ({ pkgs, ... }: {
|
import ./make-test-python.nix ({ pkgs, ... }: {
|
||||||
name = "trickster";
|
name = "trickster";
|
||||||
meta = with pkgs.stdenv.lib.maintainers; {
|
meta = with pkgs.stdenv.lib; {
|
||||||
maintainers = [ "1000101" ];
|
maintainers = with maintainers; [ maintainers."1000101" ];
|
||||||
};
|
};
|
||||||
|
|
||||||
nodes = {
|
nodes = {
|
||||||
|
|
|
@ -17,6 +17,6 @@ buildPythonPackage rec {
|
||||||
description = "Reference implementation of SLIP-0039";
|
description = "Reference implementation of SLIP-0039";
|
||||||
homepage = "https://github.com/trezor/python-shamir-mnemonic";
|
homepage = "https://github.com/trezor/python-shamir-mnemonic";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
maintainers = [ maintainers."1000101" ];
|
maintainers = with maintainers; [ maintainers."1000101" ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -50,6 +50,6 @@ stdenv.mkDerivation rec {
|
||||||
license = licenses.gpl2;
|
license = licenses.gpl2;
|
||||||
homepage = "https://www.dokuwiki.org";
|
homepage = "https://www.dokuwiki.org";
|
||||||
platforms = platforms.all;
|
platforms = platforms.all;
|
||||||
maintainers = [ maintainers."1000101" ];
|
maintainers = with maintainers; [ maintainers."1000101" ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue