cue2pops: modernize derivation; add missing license

This commit is contained in:
NotAShelf
2024-07-08 23:26:37 +03:00
parent dfaa8202e6
commit d90e08b1e1
+8 -3
View File
@@ -19,15 +19,20 @@ stdenv.mkDerivation {
makeFlags = [ "CC=${stdenv.cc.targetPrefix}cc" ];
installPhase = ''
runHook preInstall
install --directory --mode=755 $out/bin
install --mode=755 cue2pops $out/bin
runHook postInstall
'';
meta = with lib; {
meta = {
description = "Convert CUE to ISO suitable to POPStarter";
homepage = "https://github.com/makefu/cue2pops-linux";
maintainers = with maintainers; [ AndersonTorres ];
platforms = platforms.all;
# Upstream license is unclear.
# <https://github.com/ErikAndren/cue2pops-mac/issues/2#issuecomment-673983298>
license = lib.licenses.unfree;
maintainers = with lib.maintainers; [ AndersonTorres ];
platforms = lib.platforms.all;
mainProgram = "cue2pops";
};
}