focus-stack: init at 1.4

+34
+32
pkgs/applications/graphics/focus-stack/default.nix
···
··· 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , pkg-config 5 + , which 6 + , ronn 7 + , opencv 8 + }: 9 + 10 + stdenv.mkDerivation rec { 11 + pname = "focus-stack"; 12 + version = "1.4"; 13 + 14 + src = fetchFromGitHub { 15 + owner = "PetteriAimonen"; 16 + repo = "focus-stack"; 17 + rev = version; 18 + hash = "sha256-SoECgBMjWI+n7H6p3hf8J5E9UCLHGiiz5WAsEEioJsU="; 19 + }; 20 + 21 + nativeBuildInputs = [ pkg-config which ronn ]; 22 + buildInputs = [ opencv ]; 23 + 24 + makeFlags = [ "prefix=$(out)" ]; 25 + 26 + meta = with lib; { 27 + description = "Fast and easy focus stacking"; 28 + homepage = "https://github.com/PetteriAimonen/focus-stack"; 29 + license = licenses.mit; 30 + maintainers = with maintainers; [ paperdigits ]; 31 + }; 32 + }
+2
pkgs/top-level/all-packages.nix
··· 29565 29566 focus = callPackage ../tools/X11/focus { }; 29567 29568 focuswriter = libsForQt5.callPackage ../applications/editors/focuswriter { }; 29569 29570 foliate = callPackage ../applications/office/foliate { };
··· 29565 29566 focus = callPackage ../tools/X11/focus { }; 29567 29568 + focus-stack = callPackage ../applications/graphics/focus-stack { }; 29569 + 29570 focuswriter = libsForQt5.callPackage ../applications/editors/focuswriter { }; 29571 29572 foliate = callPackage ../applications/office/foliate { };