crun: 1.8.3 -> 1.8.4
[NixPkgs.git] / pkgs / tools / cd-dvd / ecm-tools / default.nix
blob18ef6f02d80c45316b844e1f757744962e5011b4
1 { lib, stdenv, fetchFromGitHub }:
3 stdenv.mkDerivation rec {
4   pname = "ecm-tools";
5   version = "1.0.3";
7   src = fetchFromGitHub {
8     owner = "alucryd";
9     repo = "ecm-tools";
10     rev = "v${version}";
11     sha256 = "1rvyx5gcy8lfklgj80szlz3312x45wzx0d9jsgwyvy8f6m4nnb0c";
12   };
14   dontConfigure = true;
16   installPhase = ''
17     install --directory --mode=755 $out/bin
18     install --mode=755 bin2ecm $out/bin
19     (cd $out/bin; ln -s bin2ecm ecm2bin)
20   '';
22   meta = with lib; {
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;
28   };