android-studio-preview: Print a deprecation warning

Hope this is ok... :)
This commit is contained in:
Michael Weiss
2018-08-01 19:47:36 +02:00
parent d8b44edd8f
commit 88bfbf6c7d
3 changed files with 21 additions and 5 deletions
@@ -1,4 +1,4 @@
{ channel, pname, version, build, sha256Hash }:
{ channel, pname, version, build, sha256Hash, deprecated ? false }:
{ bash
, buildFHSUserEnv
@@ -37,6 +37,18 @@
}:
let
# TODO: This is a bit stupid to be honest...
# The problem is that we have to make sure this is only executed if the
# derivation is actually build to avoid always printing this warning (e.g.
# "nix-env -qaP"). Since this will always evaluate to "" it won't actually
# change the derivation (only generate a side-effect) but we have to make
# sure this expression is evaluated lazily!
printDeprecationWarning = if deprecated then (builtins.trace ''
android-studio-preview and androidStudioPackages.preview are old aliases
and will be dropped at some point, please use androidStudioPackages.beta
instead (corresponds to the correct channel name).''
"")
else "";
drvName = "android-studio-${channel}-${version}";
androidStudio = stdenv.mkDerivation {
name = drvName;
@@ -130,7 +142,7 @@ in
text = ''
#!${bash}/bin/bash
${fhsEnv}/bin/${drvName}-fhs-env ${androidStudio}/bin/studio.sh
'';
'' + printDeprecationWarning;
} // {
meta = with stdenv.lib; {
description = "The Official IDE for Android (${channel} channel)";