Skip to content

Commit

Permalink
bmaptool: rename from bmap-tools and bump 3.6 -> 3.8.0 (NixOS#332434)
Browse files Browse the repository at this point in the history
  • Loading branch information
SuperSandro2000 authored Sep 2, 2024
2 parents 38c6847 + afd564a commit 9d4bada
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 9 deletions.
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{ lib, fetchFromGitHub, python3Packages }:

python3Packages.buildPythonApplication rec {
pname = "bmap-tools";
version = "3.6";
pname = "bmaptool";
version = "3.8.0";

src = fetchFromGitHub {
owner = "intel";
repo = "bmap-tools";
owner = "yoctoproject";
repo = "bmaptool";
rev = "v${version}";
sha256 = "01xzrv5nvd2nvj91lz4x9s91y9825j9pj96z0ap6yvy3w2dgvkkl";
sha256 = "sha256-YPY3sNuZ/TASNBPH94iqG6AuBRq5KjioKiuxAcu94+I=";
};

propagatedBuildInputs = with python3Packages; [ six ];
Expand All @@ -17,8 +17,8 @@ python3Packages.buildPythonApplication rec {
doCheck = false;

meta = with lib; {
description = "bmap-related tools";
homepage = "https://github.com/intel/bmap-tools";
description = "BMAP Tools";
homepage = "https://github.com/yoctoproject/bmaptool";
license = licenses.gpl2Only;
maintainers = [ maintainers.dezgeg ];
platforms = platforms.linux;
Expand Down
1 change: 1 addition & 0 deletions pkgs/top-level/aliases.nix
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,7 @@ mapAliases ({
(lib.optionalAttrs (args ? name) { pname = "blender-" + args.name; }); # Added 2023-10-30
blockbench-electron = blockbench; # Added 2024-03-16
bluezFull = throw "'bluezFull' has been renamed to/replaced by 'bluez'"; # Converted to throw 2023-09-10
bmap-tools = bmaptool; # Added 2024-08-05
bookletimposer = throw "bookletimposer has been removed from nixpkgs; upstream unmaintained and broke with pypdf3"; # Added 2024-01-01
boost168 = throw "boost168 has been deprecated in favor of the latest version"; # Added 2023-06-08
boost169 = throw "boost169 has been deprecated in favor of the latest version"; # Added 2023-06-08
Expand Down
2 changes: 0 additions & 2 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3411,8 +3411,6 @@ with pkgs;

blocksat-cli = with python3Packages; toPythonApplication blocksat-cli;

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

bolliedelayxt-lv2 = callPackage ../applications/audio/bolliedelayxt.lv2 { };

bonnmotion = callPackage ../development/tools/misc/bonnmotion { };
Expand Down

0 comments on commit 9d4bada

Please sign in to comment.