evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / ma / maxcso / package.nix
blobe16d557965dd01238bf7b21d427f47883989efa3
1 { lib, stdenv, fetchFromGitHub, libuv, lz4, zlib }:
3 stdenv.mkDerivation rec {
4   pname = "maxcso";
5   version = "1.13.0";
7   src = fetchFromGitHub {
8     owner = "unknownbrackets";
9     repo = "maxcso";
10     rev = "v${version}";
11     sha256 = "sha256-6LjR1ZMZsi6toz9swPzNmSAlrUykwvVdYi1mR8Ctq5U=";
12   };
14   buildInputs = [ libuv lz4 zlib ];
16   makeFlags = [ "PREFIX=$(out)" ];
18   meta = with lib; {
19     homepage = "https://github.com/unknownbrackets/maxcso";
20     description =
21       "A fast ISO to CSO compression program for use with PSP and PS2 emulators, which uses multiple algorithms for best compression ratio";
22     maintainers = with maintainers; [ david-sawatzke ];
23     platforms = platforms.linux ++ platforms.darwin;
24     license = licenses.isc;
25     mainProgram = "maxcso";
26   };