Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

treewide: cleanup; move packages to pkgs/by-name; format via nixfmt-rfc-style #325128

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,33 +1,35 @@
{ lib
, stdenv
, fetchFromGitHub
{
lib,
stdenv,
fetchFromGitHub,
}:

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

src = fetchFromGitHub {
owner = "makefu";
repo = "cue2pops-linux";
rev = "541863adf23fdecde92eba5899f8d58586ca4551";
sha256 = "05w84726g3k33rz0wwb9v77g7xh4cnhy9sxlpilf775nli9bynrk";
hash = "sha256-M1u/UqS2nONovLTr5KFlBPbzztlpcQ5+HmOOZ8QhiBc=";
};

dontConfigure = true;

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;
maintainers = with lib.maintainers; [ AndersonTorres ];
platforms = lib.platforms.all;
mainProgram = "cue2pops";
};
}
2 changes: 0 additions & 2 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -4398,8 +4398,6 @@ with pkgs;
inherit (darwin.apple_sdk.frameworks) Cocoa;
};

cue2pops = callPackage ../tools/cd-dvd/cue2pops { };

cabal2nix-unwrapped = haskell.lib.compose.justStaticExecutables
(haskellPackages.generateOptparseApplicativeCompletions [ "cabal2nix" ] haskellPackages.cabal2nix);

Expand Down