mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
maxcso: init at 1.12.0
This commit is contained in:
parent
9893f64b57
commit
d552a13571
2 changed files with 28 additions and 0 deletions
26
pkgs/tools/archivers/maxcso/default.nix
Normal file
26
pkgs/tools/archivers/maxcso/default.nix
Normal file
|
@ -0,0 +1,26 @@
|
|||
{ stdenv, fetchFromGitHub, libuv, lz4, zlib }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "maxcso";
|
||||
version = "1.12.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "unknownbrackets";
|
||||
repo = "maxcso";
|
||||
rev = "v${version}";
|
||||
sha256 = "10r0vb3ndpq1pw5224d48nim5xz8jj94zhlfy29br6h6jblq8zap";
|
||||
};
|
||||
|
||||
buildInputs = [ libuv lz4 zlib ];
|
||||
|
||||
makeFlags = [ "PREFIX=$(out)" ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = "https://github.com/unknownbrackets/maxcso";
|
||||
description =
|
||||
"A fast ISO to CSO compression program for use with PSP and PS2 emulators, which uses multiple algorithms for best compression ratio";
|
||||
maintainers = with maintainers; [ david-sawatzke ];
|
||||
platforms = platforms.linux ++ platforms.darwin;
|
||||
license = licenses.isc;
|
||||
};
|
||||
}
|
|
@ -2046,6 +2046,8 @@ in
|
|||
|
||||
massren = callPackage ../tools/misc/massren { };
|
||||
|
||||
maxcso = callPackage ../tools/archivers/maxcso {};
|
||||
|
||||
medusa = callPackage ../tools/security/medusa { };
|
||||
|
||||
megasync = libsForQt5.callPackage ../applications/misc/megasync { };
|
||||
|
|
Loading…
Reference in a new issue