biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / graphics / smartcrop / default.nix
blob7660607a9a4790b839ff5fd2edf0ed4f81535b30
1 { lib
2 , buildGoModule
3 , fetchFromGitHub
4 }:
6 buildGoModule {
7   pname = "smartcrop";
8   version = "unstable-2023-03-16";
10   src = fetchFromGitHub {
11     owner = "muesli";
12     repo = "smartcrop";
13     rev = "f1935b108c21d44756141bfebf302dfd7b03fdbe";
14     hash = "sha256-3fNDmKR5b6SexG3fBn7uXrtL1gbXrpo8d8boKul1R6Y=";
15   };
17   vendorHash = "sha256-ov3dHF/NxqxWPaVzddaJSjz3boLpZtIPtvP1iNBtiTc=";
19   ldflags = [ "-s" "-w" ];
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     mainProgram = "smartcrop";
27   };