weechat: Add version and meta to buildEnv package

Currently the output from `nix search` and similar tools are lacking
important meta data
This commit is contained in:
adisbladis 2018-09-22 19:46:21 +08:00
parent 54cbcdf6a9
commit 230fd49738
No known key found for this signature in database
GPG Key ID: ED58F95069B004F5

View File

@ -145,9 +145,10 @@ in if configure == null then weechat else
unwrapped = weechat;
};
in buildEnv {
name = "weechat-bin-env";
name = "weechat-bin-env-${weechat.version}";
paths = [
(mkWeechat "weechat")
(mkWeechat "weechat-headless")
];
meta = weechat.meta;
}