mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-15 13:37:21 +03:00
pidgin-with-plugins: fix version number placement in pkg name
Currently the pidgin plugins wrapper is named "pidgin-VERSION-with-plugins". Fix it so that it becomes "pidgin-with-plugins-VERSION". (And add missing newline at the end of file.)
This commit is contained in:
parent
03c6159efe
commit
71d4380a41
@ -1,7 +1,7 @@
|
||||
{ stdenv, buildEnv, pidgin, makeWrapper, plugins }:
|
||||
|
||||
let drv = buildEnv {
|
||||
name = "${pidgin.name}-with-plugins";
|
||||
name = "pidgin-with-plugins-" + (builtins.parseDrvName pidgin.name).version;
|
||||
|
||||
paths = [ pidgin ] ++ plugins;
|
||||
|
||||
@ -18,4 +18,4 @@ let drv = buildEnv {
|
||||
--suffix-each PURPLE_PLUGIN_PATH ':' "$out/lib/purple-${pidgin.majorVersion} $out/lib/pidgin"
|
||||
'';
|
||||
};
|
||||
in stdenv.lib.overrideDerivation drv (x : { buildInputs = x.buildInputs ++ [ makeWrapper ]; })
|
||||
in stdenv.lib.overrideDerivation drv (x : { buildInputs = x.buildInputs ++ [ makeWrapper ]; })
|
||||
|
Loading…
Reference in New Issue
Block a user