Merge pull request #154701 from legendofmiracles/llama

llama: init at 1.0.1

authored by

legendofmiracles and committed by
GitHub
197f637e 5d792df1

+30
+6
maintainers/maintainer-list.nix
··· 13601 13601 github = "jpagex"; 13602 13602 githubId = 635768; 13603 13603 }; 13604 + portothree = { 13605 + name = "Gustavo Porto"; 13606 + email = "gustavoporto@ya.ru"; 13607 + github = "portothree"; 13608 + githubId = 3718120; 13609 + }; 13604 13610 pwoelfel = { 13605 13611 name = "Philipp Woelfel"; 13606 13612 email = "philipp.woelfel@gmail.com";
+22
pkgs/applications/misc/llama/default.nix
··· 1 + { buildGoModule, fetchFromGitHub, lib }: 2 + 3 + buildGoModule rec { 4 + pname = "llama"; 5 + version = "1.0.2"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "antonmedv"; 9 + repo = "llama"; 10 + rev = "v${version}"; 11 + sha256 = "sha256-6Xuwl4IpzbVfJ2MhHeImPFWxL/Y6rhnBExlh64PeGdk="; 12 + }; 13 + 14 + vendorSha256 = "sha256-J/2R3XhGNmejc3jstJ0NWmJm/a1Re6UK6AuQb5gzh4E="; 15 + 16 + meta = with lib; { 17 + description = "Terminal file manager"; 18 + homepage = "https://github.com/antonmedv/llama"; 19 + license = licenses.mit; 20 + maintainers = with maintainers; [ portothree ]; 21 + }; 22 + }
+2
pkgs/top-level/all-packages.nix
··· 18161 18161 18162 18162 libmad = callPackage ../development/libraries/libmad { }; 18163 18163 18164 + llama = callPackage ../applications/misc/llama { }; 18165 + 18164 18166 malcontent = callPackage ../development/libraries/malcontent { }; 18165 18167 18166 18168 malcontent-ui = callPackage ../development/libraries/malcontent/ui.nix { };