mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
Fix typo
svn path=/nixpkgs/trunk/; revision=17057
This commit is contained in:
parent
03a9137114
commit
da94aa680b
1 changed files with 1 additions and 1 deletions
|
@ -29,7 +29,7 @@ stdenv.mkDerivation rec {
|
|||
libPath =
|
||||
let list = [ stdenv.gcc.gcc glibc qt zlib libX11 libXt libXext libSM libICE];
|
||||
in stdenv.lib.makeLibraryPath list
|
||||
+ ":" + (if stdenv.system == "x86_64-linux" then stdenv.lib.makeSearchPath "lib64" list else []);
|
||||
+ ":" + (if stdenv.system == "x86_64-linux" then stdenv.lib.makeSearchPath "lib64" list else "");
|
||||
|
||||
desktopItem = makeDesktopItem {
|
||||
name = "Opera";
|
||||
|
|
Loading…
Reference in a new issue