Files
nixpkgs/pkgs/by-name/cu/cue2pops/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

38 lines
892 B
Nix

{
lib,
stdenv,
fetchFromGitHub,
}:
stdenv.mkDerivation {
pname = "cue2pops";
version = "0-unstable-2023-01-15";
src = fetchFromGitHub {
owner = "makefu";
repo = "cue2pops-linux";
rev = "3f2be6126bd50dfe6b998bc8926f88ce9139c19a";
hash = "sha256-7rgYvqeH8ZDI8Vc5vnjIhe3Ke0TE1q/iFHEqucanhUM=";
};
dontConfigure = true;
installPhase = ''
runHook preInstall
install --directory --mode=755 $out/bin
install --mode=755 cue2pops $out/bin
runHook postInstall
'';
meta = {
description = "Convert CUE to ISO suitable to POPStarter";
homepage = "https://github.com/makefu/cue2pops-linux";
# Upstream license is unclear.
# <https://github.com/ErikAndren/cue2pops-mac/issues/2#issuecomment-673983298>
license = lib.licenses.unfree;
maintainers = [ ];
platforms = lib.platforms.all;
mainProgram = "cue2pops";
};
}