Skip to content

Commit

Permalink
bmap-tools: init at 3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
dezgeg committed Dec 18, 2017
1 parent 4ec5c79 commit fa82216
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
21 changes: 21 additions & 0 deletions pkgs/tools/misc/bmap-tools/default.nix
@@ -0,0 +1,21 @@
{ stdenv, fetchFromGitHub, python2Packages }:

python2Packages.buildPythonApplication rec {
name = "bmap-tools-${version}";
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;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Expand Up @@ -575,6 +575,8 @@ with pkgs;

bcachefs-tools = callPackage ../tools/filesystems/bcachefs-tools { };

bmap-tools = callPackage ../tools/misc/bmap-tools { };

bonnie = callPackage ../tools/filesystems/bonnie { };

bonfire = callPackage ../tools/misc/bonfire { };
Expand Down

0 comments on commit fa82216

Please sign in to comment.