mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
25 lines
591 B
Nix
25 lines
591 B
Nix
{ stdenv, fetchFromGitHub, python2Packages }:
|
|
|
|
python2Packages.buildPythonApplication rec {
|
|
pname = "bmap-tools";
|
|
version = "3.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "intel";
|
|
repo = "bmap-tools";
|
|
rev = "v${version}";
|
|
sha256 = "0p0pdwvyf9b4czi1pnhclm1ih8kw78nk2sj4if5hwi7s5423wk5q";
|
|
};
|
|
|
|
# tests fail only on hydra.
|
|
doCheck = false;
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "bmap-related tools";
|
|
homepage = "https://github.com/intel/bmap-tools";
|
|
license = licenses.gpl2;
|
|
maintainers = [ maintainers.dezgeg ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|