mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
libgff: init at 2.0.0
This commit is contained in:
parent
73f0f9c21c
commit
1fb2ef092c
1 changed files with 30 additions and 0 deletions
30
pkgs/by-name/li/libgff/package.nix
Normal file
30
pkgs/by-name/li/libgff/package.nix
Normal file
|
@ -0,0 +1,30 @@
|
|||
{ lib
|
||||
, stdenv
|
||||
, fetchFromGitHub
|
||||
, cmake
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation (finalAttrs: {
|
||||
pname = "libgff";
|
||||
version = "2.0.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "COMBINE-lab";
|
||||
repo = "libgff";
|
||||
rev = "v${finalAttrs.version}";
|
||||
hash = "sha256-ZCb3UyuB/+ykrYFQ9E5VytT65gAAULiOzIEu5IXISTc=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ cmake ];
|
||||
|
||||
meta = {
|
||||
description = "A lightweight GTF/GFF parsers exposing a C++ interface";
|
||||
homepage = "https://github.com/COMBINE-lab/libgff";
|
||||
downloadPage = "https://github.com/COMBINE-lab/libgff/releases";
|
||||
changelog = "https://github.com/COMBINE-lab/libgff/releases/tag/" +
|
||||
"v${finalAttrs.version}";
|
||||
license = lib.licenses.boost;
|
||||
platforms = lib.platforms.all;
|
||||
maintainers = [ lib.maintainers.kupac ];
|
||||
};
|
||||
})
|
Loading…
Reference in a new issue