fork
Configure Feed
Select the types of activity you want to include in your feed.
nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
fork
Configure Feed
Select the types of activity you want to include in your feed.
1{
2 lib,
3 fetchPypi,
4 python3Packages,
5}:
6
7python3Packages.buildPythonApplication rec {
8 pname = "extract-dtb";
9 version = "1.2.3";
10 pyproject = true;
11
12 src = fetchPypi {
13 inherit pname version;
14 hash = "sha256-g8Dadd0YwE5c/z6Bh/hIGtHsbmoGsgvAQjE/Hfl2+ag=";
15 };
16
17 build-system = with python3Packages; [
18 setuptools
19 ];
20
21 meta = {
22 description = "Extract device tree blobs (dtb) from kernel images";
23 homepage = "https://github.com/PabloCastellano/extract-dtb";
24 changelog = "https://github.com/PabloCastellano/extract-dtb/releases/tag/${version}";
25 license = lib.licenses.gpl3Plus;
26 platforms = lib.platforms.linux;
27 maintainers = with lib.maintainers; [ ungeskriptet ];
28 mainProgram = "extract-dtb";
29 };
30}