Skip to content

Commit e62e202

Browse files
committed
android-studio: fix fhsenv version
1 parent 1cd3957 commit e62e202

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

pkgs/applications/editors/android-studio-for-platform/common.nix

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,8 @@ let
130130
# (e.g. `mksdcard`) have `/lib/ld-linux.so.2` set as the interpreter. An FHS
131131
# environment is used as a work around for that.
132132
fhsEnv = buildFHSEnv {
133-
name = "${drvName}-fhs-env";
133+
pname = "${drvName}-fhs-env";
134+
inherit version;
134135
multiPkgs = pkgs: [
135136
zlib
136137
ncurses5

pkgs/applications/editors/android-studio/common.nix

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,8 @@ let
208208
# (e.g. `mksdcard`) have `/lib/ld-linux.so.2` set as the interpreter. An FHS
209209
# environment is used as a work around for that.
210210
fhsEnv = buildFHSEnv {
211-
name = "${drvName}-fhs-env";
211+
pname = "${drvName}-fhs-env";
212+
inherit version;
212213
multiPkgs = pkgs: [
213214
ncurses5
214215

0 commit comments

Comments
 (0)