aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/tools/cd-dvd/cue2pops/default.nix
blob: 795589a64ec29c0592a39555fc294e077c9768a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{ lib
, stdenv
, fetchFromGitHub
}:

stdenv.mkDerivation {
  pname = "cue2pops";
  version = "unstable-2018-01-04";

  src = fetchFromGitHub {
    owner = "makefu";
    repo = "cue2pops-linux";
    rev = "541863adf23fdecde92eba5899f8d58586ca4551";
    sha256 = "05w84726g3k33rz0wwb9v77g7xh4cnhy9sxlpilf775nli9bynrk";
  };

  dontConfigure = true;

  makeFlags = [ "CC=${stdenv.cc.targetPrefix}cc" ];

  installPhase = ''
    install --directory --mode=755 $out/bin
    install --mode=755 cue2pops $out/bin
  '';

  meta = with lib; {
    description = "Convert CUE to ISO suitable to POPStarter";
    homepage = "https://github.com/makefu/cue2pops-linux";
    maintainers = with maintainers; [ AndersonTorres ];
    platforms = platforms.all;
  };
}