avoid package attributes starting with a digit
This commit is contained in:
parent
222f905fd9
commit
c946c101d6
@ -25,12 +25,12 @@ in
|
||||
{ name = "2bwm";
|
||||
start =
|
||||
''
|
||||
${pkgs."2bwm"}/bin/2bwm &
|
||||
${pkgs._2bwm}/bin/2bwm &
|
||||
waitPID=$!
|
||||
'';
|
||||
};
|
||||
|
||||
environment.systemPackages = [ pkgs."2bwm" ];
|
||||
environment.systemPackages = [ pkgs._2bwm ];
|
||||
|
||||
};
|
||||
|
||||
|
@ -24,7 +24,11 @@ in
|
||||
### Deprecated aliases - for backward compatibility
|
||||
|
||||
mapAliases (rec {
|
||||
accounts-qt = libsForQt5.accounts-qt; # added 2015-12-19
|
||||
_2048-in-terminal = "2048-in-terminal"; # added 2017-01-16
|
||||
_2bwm = "2bwm"; # added 2017-01-16
|
||||
_389-ds-base = "389-ds-base"; # added 2017-01-16
|
||||
_90secondportraits = "90secondsportraits"; # added 2017-01-16
|
||||
accounts-qt = libsForQt5.accounts-qt; # added 2015-12-19
|
||||
adobeReader = adobe-reader; # added 2013-11-04
|
||||
aircrackng = aircrack-ng; # added 2016-01-14
|
||||
ammonite-repl = ammonite; # added 2017-05-02
|
||||
|
@ -7313,7 +7313,7 @@ with pkgs;
|
||||
|
||||
cide = callPackage ../development/tools/continuous-integration/cide { };
|
||||
|
||||
"cl-launch" = callPackage ../development/tools/misc/cl-launch {};
|
||||
cl-launch = callPackage ../development/tools/misc/cl-launch {};
|
||||
|
||||
cloudfoundry-cli = callPackage ../development/tools/cloudfoundry-cli { };
|
||||
|
||||
@ -11739,7 +11739,7 @@ with pkgs;
|
||||
|
||||
### SERVERS
|
||||
|
||||
"389-ds-base" = callPackage ../servers/ldap/389 {
|
||||
_389-ds-base = callPackage ../servers/ldap/389 {
|
||||
kerberos = libkrb5;
|
||||
};
|
||||
|
||||
@ -14040,7 +14040,7 @@ with pkgs;
|
||||
|
||||
### APPLICATIONS
|
||||
|
||||
"2bwm" = callPackage ../applications/window-managers/2bwm {
|
||||
_2bwm = callPackage ../applications/window-managers/2bwm {
|
||||
patches = config."2bwm".patches or [];
|
||||
};
|
||||
|
||||
@ -18052,9 +18052,9 @@ with pkgs;
|
||||
|
||||
### GAMES
|
||||
|
||||
"2048-in-terminal" = callPackage ../games/2048-in-terminal { };
|
||||
_2048-in-terminal = callPackage ../games/2048-in-terminal { };
|
||||
|
||||
"90secondportraits" = callPackage ../games/90secondportraits { love = love_0_10; };
|
||||
_90secondportraits = callPackage ../games/90secondportraits { love = love_0_10; };
|
||||
|
||||
adom = callPackage ../games/adom { };
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user