libgff: init at 2.0.0

+30
+30
pkgs/by-name/li/libgff/package.nix
··· 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , cmake 5 + }: 6 + 7 + stdenv.mkDerivation (finalAttrs: { 8 + pname = "libgff"; 9 + version = "2.0.0"; 10 + 11 + src = fetchFromGitHub { 12 + owner = "COMBINE-lab"; 13 + repo = "libgff"; 14 + rev = "v${finalAttrs.version}"; 15 + hash = "sha256-ZCb3UyuB/+ykrYFQ9E5VytT65gAAULiOzIEu5IXISTc="; 16 + }; 17 + 18 + nativeBuildInputs = [ cmake ]; 19 + 20 + meta = { 21 + description = "A lightweight GTF/GFF parsers exposing a C++ interface"; 22 + homepage = "https://github.com/COMBINE-lab/libgff"; 23 + downloadPage = "https://github.com/COMBINE-lab/libgff/releases"; 24 + changelog = "https://github.com/COMBINE-lab/libgff/releases/tag/" + 25 + "v${finalAttrs.version}"; 26 + license = lib.licenses.boost; 27 + platforms = lib.platforms.all; 28 + maintainers = [ lib.maintainers.kupac ]; 29 + }; 30 + })