tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
libgff: init at 2.0.0
László Kupcsik
2 years ago
1fb2ef09
73f0f9c2
+30
1 changed file
expand all
collapse all
unified
split
pkgs
by-name
li
libgff
package.nix
+30
pkgs/by-name/li/libgff/package.nix
···
1
1
+
{ lib
2
2
+
, stdenv
3
3
+
, fetchFromGitHub
4
4
+
, cmake
5
5
+
}:
6
6
+
7
7
+
stdenv.mkDerivation (finalAttrs: {
8
8
+
pname = "libgff";
9
9
+
version = "2.0.0";
10
10
+
11
11
+
src = fetchFromGitHub {
12
12
+
owner = "COMBINE-lab";
13
13
+
repo = "libgff";
14
14
+
rev = "v${finalAttrs.version}";
15
15
+
hash = "sha256-ZCb3UyuB/+ykrYFQ9E5VytT65gAAULiOzIEu5IXISTc=";
16
16
+
};
17
17
+
18
18
+
nativeBuildInputs = [ cmake ];
19
19
+
20
20
+
meta = {
21
21
+
description = "A lightweight GTF/GFF parsers exposing a C++ interface";
22
22
+
homepage = "https://github.com/COMBINE-lab/libgff";
23
23
+
downloadPage = "https://github.com/COMBINE-lab/libgff/releases";
24
24
+
changelog = "https://github.com/COMBINE-lab/libgff/releases/tag/" +
25
25
+
"v${finalAttrs.version}";
26
26
+
license = lib.licenses.boost;
27
27
+
platforms = lib.platforms.all;
28
28
+
maintainers = [ lib.maintainers.kupac ];
29
29
+
};
30
30
+
})