about summary refs log tree commit diff
path: root/nixpkgs/pkgs/by-name/nd/ndstrim/package.nix
blob: 403bd831a76b417d17dc31d600ead5ee9f539322 (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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{ lib
, fetchFromGitHub
, fetchpatch
, rustPlatform
}:

rustPlatform.buildRustPackage rec {
  pname = "ndstrim";
  version = "0.2.1";

  src = fetchFromGitHub {
    owner = "Nemris";
    repo = "ndstrim";
    rev = "v${version}";
    hash = "sha256-KgtejBbFg6+klc8OpCs1CIb+7uVPCtP0/EM671vxauk=";
  };

  patches = [
    # https://github.com/Nemris/ndstrim/pull/1
    (fetchpatch {
      name = "update-cargo-lock.patch";
      url = "https://github.com/Nemris/ndstrim/commit/8147bb31a8fb5765f33562957a61cb6ddbe65513.patch";
      hash = "sha256-HsCc5un9dg0gRkRjwxtjms0cugqWhcTthGfcF50EgYA=";
    })
  ];

  cargoHash = "sha256-k5SlsIWHEZaYwk5cmLb1QMs3lk0VGGwiGd1TSQJC3Ss=";

  # TODO: remove this after upstream merge above patch.
  # Without the workaround below the build results in the following error:
  # Validating consistency between /build/source/Cargo.lock and /build/ndstrim-0.2.1-vendor.tar.gz/Cargo.lock
  # <hash>
  # < version = "0.2.1"
  # ---
  # > version = "0.1.0"
  #
  # ERROR: cargoHash or cargoSha256 is out of date
  postPatch = ''
    cargoSetupPostPatchHook() { true; }
  '';

  meta = with lib; {
    description = "Trim the excess padding found in Nintendo DS(i) ROMs";
    homepage = "https://github.com/Nemris/ndstrim";
    license = licenses.mit;
    platforms = platforms.unix;
    maintainers = with maintainers; [ thiagokokada ];
    mainProgram = "ndstrim";
  };
}