summary refs log tree commit diff
path: root/pkgs/tools/misc/bmap-tools/default.nix
blob: 6b7a51e08f51b87fb61d6cf3a4e836e6ebcfdc8c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ stdenv, fetchFromGitHub, python2Packages }:

python2Packages.buildPythonApplication rec {
  pname = "bmap-tools";
  version = "3.4";

  src = fetchFromGitHub {
    owner = "intel";
    repo = "bmap-tools";
    rev = "v${version}";
    sha256 = "0p0pdwvyf9b4czi1pnhclm1ih8kw78nk2sj4if5hwi7s5423wk5q";
  };

  meta = with stdenv.lib; {
    description = "bmap-related tools";
    homepage = https://github.com/intel/bmap-tools;
    license = licenses.gpl2;
    maintainers = [ maintainers.dezgeg ];
    platforms = platforms.linux;
  };
}