about summary refs log tree commit diff
path: root/pkgs/tools/graphics/smartcrop/default.nix
blob: 7660607a9a4790b839ff5fd2edf0ed4f81535b30 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{ lib
, buildGoModule
, fetchFromGitHub
}:

buildGoModule {
  pname = "smartcrop";
  version = "unstable-2023-03-16";

  src = fetchFromGitHub {
    owner = "muesli";
    repo = "smartcrop";
    rev = "f1935b108c21d44756141bfebf302dfd7b03fdbe";
    hash = "sha256-3fNDmKR5b6SexG3fBn7uXrtL1gbXrpo8d8boKul1R6Y=";
  };

  vendorHash = "sha256-ov3dHF/NxqxWPaVzddaJSjz3boLpZtIPtvP1iNBtiTc=";

  ldflags = [ "-s" "-w" ];

  meta = with lib; {
    description = "Find good image crops for arbitrary crop sizes";
    homepage = "https://github.com/muesli/smartcrop";
    license = licenses.mit;
    maintainers = with maintainers; [ figsoda ];
    mainProgram = "smartcrop";
  };
}