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:
Bjørn Forsman 2014-10-26 11:34:05 +01:00
parent 03c6159efe
commit 71d4380a41

View file

@ -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;