mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 07:23:20 +00:00
smartcrop: init at unstable-2023-03-16
https://github.com/muesli/smartcrop
This commit is contained in:
parent
1708e6ad63
commit
d217eca58d
27
pkgs/tools/graphics/smartcrop/default.nix
Normal file
27
pkgs/tools/graphics/smartcrop/default.nix
Normal file
@ -0,0 +1,27 @@
|
||||
{ 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 ];
|
||||
};
|
||||
}
|
@ -34767,6 +34767,8 @@ with pkgs;
|
||||
|
||||
slrn = callPackage ../applications/networking/newsreaders/slrn { };
|
||||
|
||||
smartcrop = callPackage ../tools/graphics/smartcrop { };
|
||||
|
||||
sniffnet = callPackage ../applications/networking/sniffnet { };
|
||||
|
||||
sniproxy = callPackage ../applications/networking/sniproxy { };
|
||||
|
Loading…
Reference in New Issue
Block a user