forked from mirrors/nixpkgs
Merge pull request #10628 from devhell/mp3val
mp3val: Better installPhase
This commit is contained in:
commit
bad15da924
|
@ -12,8 +12,7 @@ stdenv.mkDerivation rec {
|
||||||
makefile = "Makefile.linux";
|
makefile = "Makefile.linux";
|
||||||
|
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
mkdir -p $out/bin/
|
install -Dv mp3val "$out/bin/mp3val"
|
||||||
cp mp3val $out/bin/
|
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
|
@ -30,7 +29,7 @@ stdenv.mkDerivation rec {
|
||||||
'';
|
'';
|
||||||
homepage = http://mp3val.sourceforge.net/index.shtml;
|
homepage = http://mp3val.sourceforge.net/index.shtml;
|
||||||
license = stdenv.lib.licenses.gpl2;
|
license = stdenv.lib.licenses.gpl2;
|
||||||
platforms = stdenv.lib.platforms.linux;
|
platforms = stdenv.lib.platforms.unix;
|
||||||
maintainers = [ stdenv.lib.maintainers.devhell ];
|
maintainers = [ stdenv.lib.maintainers.devhell ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue