cue2pops: init at git-2018-01-04
This commit is contained in:
parent
dc2b7b9e68
commit
d532615dfc
28
pkgs/tools/cd-dvd/cue2pops/default.nix
Normal file
28
pkgs/tools/cd-dvd/cue2pops/default.nix
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
{ stdenv, fetchFromGitHub }:
|
||||||
|
|
||||||
|
with stdenv.lib;
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "cue2pops-${version}";
|
||||||
|
version = "git-2018-01-04";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "makefu";
|
||||||
|
repo = "cue2pops-linux";
|
||||||
|
rev = "541863adf23fdecde92eba5899f8d58586ca4551";
|
||||||
|
sha256 = "05w84726g3k33rz0wwb9v77g7xh4cnhy9sxlpilf775nli9bynrk";
|
||||||
|
};
|
||||||
|
|
||||||
|
dontConfigure = true;
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
install --directory --mode=755 $out/bin
|
||||||
|
install --mode=755 cue2pops $out/bin
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Convert CUE to ISO suitable to POPStarter";
|
||||||
|
homepage = https://github.com/makefu/cue2pops-linux;
|
||||||
|
maintainers = with maintainers; [ AndersonTorres ];
|
||||||
|
platforms = platforms.all;
|
||||||
|
};
|
||||||
|
}
|
@ -886,6 +886,8 @@ with pkgs;
|
|||||||
inherit (darwin.apple_sdk.frameworks) Cocoa;
|
inherit (darwin.apple_sdk.frameworks) Cocoa;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
cue2pops = callPackage ../tools/cd-dvd/cue2pops { };
|
||||||
|
|
||||||
cabal2nix = haskell.lib.overrideCabal haskellPackages.cabal2nix (drv: {
|
cabal2nix = haskell.lib.overrideCabal haskellPackages.cabal2nix (drv: {
|
||||||
isLibrary = false;
|
isLibrary = false;
|
||||||
enableSharedExecutables = false;
|
enableSharedExecutables = false;
|
||||||
|
Loading…
Reference in New Issue
Block a user