biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / graphics / dnglab / default.nix
blob3d9ffbeba2ef0faba7cf2c9d0f462d2ae0078b46
1 { lib
2 , rustPlatform
3 , fetchFromGitHub
4 }:
5 rustPlatform.buildRustPackage rec {
6   pname = "dnglab";
7   version = "0.6.3";
9   src = fetchFromGitHub {
10     owner = "dnglab";
11     repo = "dnglab";
12     rev = "v${version}";
13     # darwin/linux hash mismatch
14     postFetch = ''
15       rm -rf "$out"/rawler/data/testdata/cameras/Canon/{"EOS REBEL T7i","EOS Rebel T7i"}
16     '';
17     hash = "sha256-k0tKNtVDzE5vVi/953aEQihh+5BsVneqauTr9WRFFrY=";
18   };
20   cargoHash = "sha256-6qJFNfgWh3i1CpuM/QdLksVAFz4XIV8uT5oz5BZ3U30=";
22   postInstall = ''
23     rm $out/bin/benchmark $out/bin/identify
24   '';
26   meta = with lib; {
27     description = "Camera RAW to DNG file format converter";
28     homepage = "https://github.com/dnglab/dnglab";
29     license = licenses.lgpl21Only;
30     maintainers = with maintainers; [ dit7ya ];
31     mainProgram = "dnglab";
32   };