oxipng: init at 1.0.0
This commit is contained in:
parent
cb02fae72f
commit
b22883c9a4
22
pkgs/tools/graphics/oxipng/default.nix
Normal file
22
pkgs/tools/graphics/oxipng/default.nix
Normal file
@ -0,0 +1,22 @@
|
||||
{ stdenv, fetchFromGitHub, rustPlatform }:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
version = "1.0.0";
|
||||
name = "oxipng-${version}";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "shssoichiro";
|
||||
repo = "oxipng";
|
||||
rev = "v${version}";
|
||||
sha256 = "1w3y9qy72sfz6zv1iizp843fd39rf1qfh7b9mllbn5w8w4hd658w";
|
||||
};
|
||||
|
||||
cargoSha256 = "0mj45svb0nly3cl5d1fmm7nh2zswxpgb56g9xnb4cks5186sn5fi";
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = https://github.com/shssoichiro/oxipng;
|
||||
description = "A lossless PNG compression optimizer";
|
||||
license = licenses.mit;
|
||||
platforms = platforms.all;
|
||||
};
|
||||
}
|
@ -3970,6 +3970,8 @@ with pkgs;
|
||||
|
||||
owncloud-client = libsForQt5.callPackage ../applications/networking/owncloud-client { };
|
||||
|
||||
oxipng = callPackage ../tools/graphics/oxipng { };
|
||||
|
||||
p2pvc = callPackage ../applications/video/p2pvc {};
|
||||
|
||||
p7zip = callPackage ../tools/archivers/p7zip { };
|
||||
|
Loading…
Reference in New Issue
Block a user