From c3f49dcaf07f00a7f29d65f2429490089b24b3df Mon Sep 17 00:00:00 2001 From: Kier Davis Date: Thu, 8 Dec 2016 16:50:54 +0000 Subject: [PATCH] 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. --- pkgs/applications/graphics/unigine-valley/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/graphics/unigine-valley/default.nix b/pkgs/applications/graphics/unigine-valley/default.nix index d2b3756cecb..9ff603f405e 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"]; };