lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 23.05-pre 22 lines 601 B view raw
1{ lib, stdenv, fetchCrate, rustPlatform }: 2 3rustPlatform.buildRustPackage rec { 4 version = "6.0.1"; 5 pname = "oxipng"; 6 7 src = fetchCrate { 8 inherit version pname; 9 sha256 = "sha256-YH4sIEOTPBbzsEMvHyphOsf12ZZRKsRPMlZ4emMMTrw="; 10 }; 11 12 cargoSha256 = "sha256-c7uEb64epjzU3pmHRr69FoxFGCN+1WVMLm8LsBwQ50o="; 13 14 doCheck = !stdenv.isAarch64 && !stdenv.isDarwin; 15 16 meta = with lib; { 17 homepage = "https://github.com/shssoichiro/oxipng"; 18 description = "A multithreaded lossless PNG compression optimizer"; 19 license = licenses.mit; 20 maintainers = with maintainers; [ dywedir ]; 21 }; 22}