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