mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-21 05:04:00 +00:00
29 lines
650 B
Nix
29 lines
650 B
Nix
{ lib
|
|
, rustPlatform
|
|
, fetchFromGitHub
|
|
}:
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "dnglab";
|
|
version = "0.5.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "dnglab";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-4uTpCBzBBkcpVBVZMOBD6f9ut71OuUNQ5+AkaQcU86M=";
|
|
};
|
|
|
|
cargoSha256 = "sha256-WvXQNDYvR6s4M2Hlpqwq1/wFQYW2QU/ngQimKOFkhOQ=";
|
|
|
|
postInstall = ''
|
|
rm $out/bin/benchmark $out/bin/identify
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Camera RAW to DNG file format converter";
|
|
homepage = "https://github.com/dnglab/dnglab";
|
|
license = licenses.lgpl21Only;
|
|
maintainers = with maintainers; [ dit7ya ];
|
|
};
|
|
}
|