lol

mp3val: Better installPhase

As mentioned by @aszlig, it's more elegant and sane to use coreutils'
`install`. This commit also changes `platforms` to `unix` since this
should also compile on Darwin for example.

devhell b2e3c05c 6e9f77dc

+2 -3
+2 -3
pkgs/applications/audio/mp3val/default.nix
··· 12 12 makefile = "Makefile.linux"; 13 13 14 14 installPhase = '' 15 - mkdir -p $out/bin/ 16 - cp mp3val $out/bin/ 15 + install -Dv mp3val "$out/bin/mp3val" 17 16 ''; 18 17 19 18 meta = { ··· 30 29 ''; 31 30 homepage = http://mp3val.sourceforge.net/index.shtml; 32 31 license = stdenv.lib.licenses.gpl2; 33 - platforms = stdenv.lib.platforms.linux; 32 + platforms = stdenv.lib.platforms.unix; 34 33 maintainers = [ stdenv.lib.maintainers.devhell ]; 35 34 }; 36 35 }