From 13261b9e38a12ab71cacbe4fd2539f14799e2bc4 Mon Sep 17 00:00:00 2001 From: aszlig Date: Tue, 30 Dec 2014 22:30:05 +0100 Subject: [PATCH] mp3gain: Fix output path bin directory. Signed-off-by: aszlig --- pkgs/applications/audio/mp3gain/default.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pkgs/applications/audio/mp3gain/default.nix b/pkgs/applications/audio/mp3gain/default.nix index 340658f813d..3fef8398e9c 100644 --- a/pkgs/applications/audio/mp3gain/default.nix +++ b/pkgs/applications/audio/mp3gain/default.nix @@ -14,8 +14,7 @@ stdenv.mkDerivation { buildFlags = [ "OSTYPE=linux" ]; installPhase = '' - mkdir -p $out/usr/bin - cp mp3gain $out/usr/bin + install -vD mp3gain "$out/bin/mp3gain" ''; meta = {