nerdfonts: fix wrong attribute name in error message (#364463)
[NixPkgs.git] / pkgs / by-name / ox / oxipng / package.nix
blob572977337e4c7da6ab87489611bfb997bda781c4
2   lib,
3   stdenv,
4   fetchCrate,
5   rustPlatform,
6 }:
8 rustPlatform.buildRustPackage rec {
9   version = "9.1.3";
10   pname = "oxipng";
12   src = fetchCrate {
13     inherit version pname;
14     hash = "sha256-kzN4YNsFqv/KUxpHao++oqc90Us6VllyFYkpdVUigD0=";
15   };
17   cargoHash = "sha256-4PCLtBJliK3uteL8EVKLBVR2YZW1gwQOiSLQok+rqug=";
19   doCheck = !stdenv.hostPlatform.isAarch64 && !stdenv.hostPlatform.isDarwin;
21   meta = {
22     homepage = "https://github.com/shssoichiro/oxipng";
23     description = "Multithreaded lossless PNG compression optimizer";
24     license = lib.licenses.mit;
25     maintainers = with lib.maintainers; [ dywedir ];
26     mainProgram = "oxipng";
27   };