nsz: init at 4.0.0
This commit is contained in:
parent
018cd5e5fb
commit
9a7a4d7422
|
@ -38,6 +38,8 @@
|
||||||
pitchcontrol = callPackage ./mpv-scripts/pitchcontrol { };
|
pitchcontrol = callPackage ./mpv-scripts/pitchcontrol { };
|
||||||
};
|
};
|
||||||
|
|
||||||
|
nsz = callPythonPackage ./nsz { };
|
||||||
|
|
||||||
oha = callPackage ./oha { };
|
oha = callPackage ./oha { };
|
||||||
|
|
||||||
snownews = callPackage ./snownews { };
|
snownews = callPackage ./snownews { };
|
||||||
|
@ -79,6 +81,7 @@
|
||||||
cyanrip
|
cyanrip
|
||||||
deemix
|
deemix
|
||||||
face_morpher
|
face_morpher
|
||||||
|
nsz
|
||||||
oha
|
oha
|
||||||
snownews
|
snownews
|
||||||
textidote
|
textidote
|
||||||
|
|
33
nsz/default.nix
Normal file
33
nsz/default.nix
Normal file
|
@ -0,0 +1,33 @@
|
||||||
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
, pycryptodome
|
||||||
|
, zstandard
|
||||||
|
, enlighten
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "nsz";
|
||||||
|
version = "4.0.0";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "1gckszvkjklrslidpfidbzcigpwwj4s0chrnrg16wvh3r93aiaci";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
pycryptodome
|
||||||
|
zstandard
|
||||||
|
enlighten
|
||||||
|
];
|
||||||
|
|
||||||
|
doCheck = false; # requires keys
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "A homebrew compatible NSP/XCI compressor/decompressor";
|
||||||
|
homepage = "https://github.com/nicoboss/nsz";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ sbruder ];
|
||||||
|
platforms = platforms.all;
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue