1 { lib, stdenv, fetchFromGitHub }:
3 stdenv.mkDerivation rec {
7 src = fetchFromGitHub {
11 sha256 = "1rvyx5gcy8lfklgj80szlz3312x45wzx0d9jsgwyvy8f6m4nnb0c";
17 install --directory --mode=755 $out/bin
18 install --mode=755 bin2ecm $out/bin
19 (cd $out/bin; ln -s bin2ecm ecm2bin)
23 description = "A utility to uncompress ECM files to BIN CD format";
24 homepage = "https://github.com/alucryd/ecm-tools";
25 license = licenses.gpl3;
26 maintainers = with maintainers; [ AndersonTorres ];
27 platforms = platforms.all;