about summary refs log tree commit diff
path: root/nixpkgs/pkgs/by-name/if/ifrextractor-rs/package.nix
blob: 48ab01d352fa1a0e2808b684dc6fe83725527298 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{ lib
, fetchFromGitHub
, rustPlatform
}:

rustPlatform.buildRustPackage rec {
  pname = "ifrextractor-rs";
  version = "1.5.1";

  src = fetchFromGitHub {
    owner = "LongSoft";
    repo = pname;
    rev = "v${version}";
    hash = "sha256-zpoOThjkL2Hu/ytxdqWcr2GXzN4Cm8hph7PJhSF5BlU=";
  };

  cargoLock = {
    lockFile = ./Cargo.lock;
  };

  postPatch = ''
    ln -s ${./Cargo.lock} Cargo.lock
  '';

  meta = with lib; {
    description = "Rust utility to extract UEFI IFR data into human-readable text";
    homepage = "https://github.com/LongSoft/IFRExtractor-RS";
    license = licenses.bsd2;
    maintainers = with maintainers; [ jiegec ];
  };
}