about summary refs log tree commit diff
path: root/pkgs/applications/graphics/unigine-valley/default.nix
diff options
context:
space:
mode:
authorKier Davis <kierdavis@gmail.com>2016-12-08 16:50:54 +0000
committerKier Davis <kierdavis@gmail.com>2016-12-16 10:42:09 +0000
commitc3f49dcaf07f00a7f29d65f2429490089b24b3df (patch)
treeea61abd3e113ebdf0d2443293457f68fcc262025 /pkgs/applications/graphics/unigine-valley/default.nix
parent0d1d1bd7e2bf2c825ea7685ec1427d7dfc79113c (diff)
downloadnixlib-c3f49dcaf07f00a7f29d65f2429490089b24b3df.tar
nixlib-c3f49dcaf07f00a7f29d65f2429490089b24b3df.tar.gz
nixlib-c3f49dcaf07f00a7f29d65f2429490089b24b3df.tar.bz2
nixlib-c3f49dcaf07f00a7f29d65f2429490089b24b3df.tar.lz
nixlib-c3f49dcaf07f00a7f29d65f2429490089b24b3df.tar.xz
nixlib-c3f49dcaf07f00a7f29d65f2429490089b24b3df.tar.zst
nixlib-c3f49dcaf07f00a7f29d65f2429490089b24b3df.zip
unigine-valley: install files to a more idiomatic location
Previously, the entire installation was copied to $out/opt/unigine/valley.
Using $out/lib instead of $out/opt would be more consistent with other Nix packages.
Diffstat (limited to 'pkgs/applications/graphics/unigine-valley/default.nix')
-rw-r--r--pkgs/applications/graphics/unigine-valley/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/graphics/unigine-valley/default.nix b/pkgs/applications/graphics/unigine-valley/default.nix
index d2b3756cecbb..9ff603f405e4 100644
--- a/pkgs/applications/graphics/unigine-valley/default.nix
+++ b/pkgs/applications/graphics/unigine-valley/default.nix
@@ -70,7 +70,7 @@ in
     buildPhase = "";
 
     installPhase = ''
-      instdir=$out/opt/unigine/valley
+      instdir=$out/lib/unigine/valley
 
       # Install executables and libraries
       mkdir -p $instdir/bin
@@ -96,7 +96,7 @@ in
     meta = {
       description = "The Unigine Valley GPU benchmarking tool";
       homepage = "http://unigine.com/products/benchmarks/valley/";
-      license = stdenv.lib.licenses.unfree; # see also: /nix/store/*-unigine-valley-1.0/opt/unigine/valley/documentation/License.pdf
+      license = stdenv.lib.licenses.unfree; # see also: /nix/store/*-unigine-valley-1.0/lib/unigine/valley/documentation/License.pdf
       maintainers = [ stdenv.lib.maintainers.kierdavis ];
       platforms = ["x86_64-linux" "i686-linux"];
     };