Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

Merge pull request #35145 from AndersonTorres/upload/cue2pops

cue2pops: init at git-2018-01-04

authored by

Jörg Thalheim and committed by
GitHub
d428bc27 0429e8fb

+32
+30
pkgs/tools/cd-dvd/cue2pops/default.nix
··· 1 + { stdenv, fetchFromGitHub }: 2 + 3 + with stdenv.lib; 4 + stdenv.mkDerivation rec { 5 + name = "cue2pops-${version}"; 6 + version = "git-2018-01-04"; 7 + 8 + src = fetchFromGitHub { 9 + owner = "makefu"; 10 + repo = "cue2pops-linux"; 11 + rev = "541863adf23fdecde92eba5899f8d58586ca4551"; 12 + sha256 = "05w84726g3k33rz0wwb9v77g7xh4cnhy9sxlpilf775nli9bynrk"; 13 + }; 14 + 15 + dontConfigure = true; 16 + 17 + makeFlags = ["CC=cc"]; 18 + 19 + installPhase = '' 20 + install --directory --mode=755 $out/bin 21 + install --mode=755 cue2pops $out/bin 22 + ''; 23 + 24 + meta = { 25 + description = "Convert CUE to ISO suitable to POPStarter"; 26 + homepage = https://github.com/makefu/cue2pops-linux; 27 + maintainers = with maintainers; [ AndersonTorres ]; 28 + platforms = platforms.all; 29 + }; 30 + }
+2
pkgs/top-level/all-packages.nix
··· 891 891 inherit (darwin.apple_sdk.frameworks) Cocoa; 892 892 }; 893 893 894 + cue2pops = callPackage ../tools/cd-dvd/cue2pops { }; 895 + 894 896 cabal2nix = haskell.lib.overrideCabal haskellPackages.cabal2nix (drv: { 895 897 isLibrary = false; 896 898 enableSharedExecutables = false;