mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 15:56:50 +01: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 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue