1{ stdenv, fetchFromGitHub, python2Packages }:
2
3python2Packages.buildPythonApplication rec {
4 name = "bmap-tools-${version}";
5 version = "3.4";
6
7 src = fetchFromGitHub {
8 owner = "intel";
9 repo = "bmap-tools";
10 rev = "v${version}";
11 sha256 = "0p0pdwvyf9b4czi1pnhclm1ih8kw78nk2sj4if5hwi7s5423wk5q";
12 };
13
14 meta = with stdenv.lib; {
15 description = "bmap-related tools";
16 homepage = https://github.com/intel/bmap-tools;
17 license = licenses.gpl2;
18 maintainers = [ maintainers.dezgeg ];
19 platforms = platforms.linux;
20 };
21}