image-roll: init at 1.3.1

Co-authored-by: Artturi <Artturin@artturin.com>

figsoda bda0cc3b 9d9895d8

+35
+33
pkgs/applications/graphics/image-roll/default.nix
···
··· 1 + { lib 2 + , rustPlatform 3 + , fetchFromGitHub 4 + , glib 5 + , pkg-config 6 + , wrapGAppsHook 7 + , gtk3 8 + }: 9 + 10 + rustPlatform.buildRustPackage rec { 11 + pname = "image-roll"; 12 + version = "1.3.1"; 13 + 14 + src = fetchFromGitHub { 15 + owner = "weclaw1"; 16 + repo = pname; 17 + rev = version; 18 + sha256 = "007jzmrn4cnqbi6fy5lxanbwa4pc72fbcv9irk3pfd0wspp05s8j"; 19 + }; 20 + 21 + cargoSha256 = "sha256-dRRBfdGTXtoNbp7OWqOdNECXHCpj0ipkCOvcdekW+G4="; 22 + 23 + nativeBuildInputs = [ glib pkg-config wrapGAppsHook ]; 24 + 25 + buildInputs = [ gtk3 ]; 26 + 27 + meta = with lib; { 28 + description = "Simple and fast GTK image viewer with basic image manipulation tools"; 29 + homepage = "https://github.com/weclaw1/image-roll"; 30 + license = licenses.mit; 31 + maintainers = with maintainers; [ figsoda ]; 32 + }; 33 + }
+2
pkgs/top-level/all-packages.nix
··· 25600 inherit (darwin.apple_sdk.frameworks) Security; 25601 }; 25602 25603 imagej = callPackage ../applications/graphics/imagej { }; 25604 25605 imagemagick6_light = imagemagick6.override {
··· 25600 inherit (darwin.apple_sdk.frameworks) Security; 25601 }; 25602 25603 + image-roll = callPackage ../applications/graphics/image-roll { }; 25604 + 25605 imagej = callPackage ../applications/graphics/imagej { }; 25606 25607 imagemagick6_light = imagemagick6.override {