smartcrop: init at unstable-2023-03-16

https://github.com/muesli/smartcrop

figsoda d217eca5 1708e6ad

+29
+27
pkgs/tools/graphics/smartcrop/default.nix
··· 1 + { lib 2 + , buildGoModule 3 + , fetchFromGitHub 4 + }: 5 + 6 + buildGoModule { 7 + pname = "smartcrop"; 8 + version = "unstable-2023-03-16"; 9 + 10 + src = fetchFromGitHub { 11 + owner = "muesli"; 12 + repo = "smartcrop"; 13 + rev = "f1935b108c21d44756141bfebf302dfd7b03fdbe"; 14 + hash = "sha256-3fNDmKR5b6SexG3fBn7uXrtL1gbXrpo8d8boKul1R6Y="; 15 + }; 16 + 17 + vendorHash = "sha256-ov3dHF/NxqxWPaVzddaJSjz3boLpZtIPtvP1iNBtiTc="; 18 + 19 + ldflags = [ "-s" "-w" ]; 20 + 21 + meta = with lib; { 22 + description = "Find good image crops for arbitrary crop sizes"; 23 + homepage = "https://github.com/muesli/smartcrop"; 24 + license = licenses.mit; 25 + maintainers = with maintainers; [ figsoda ]; 26 + }; 27 + }
+2
pkgs/top-level/all-packages.nix
··· 34767 34767 34768 34768 slrn = callPackage ../applications/networking/newsreaders/slrn { }; 34769 34769 34770 + smartcrop = callPackage ../tools/graphics/smartcrop { }; 34771 + 34770 34772 sniffnet = callPackage ../applications/networking/sniffnet { }; 34771 34773 34772 34774 sniproxy = callPackage ../applications/networking/sniproxy { };