dnglab: init at 0.5.0

This commit is contained in:
Mostly Void 2022-10-02 20:16:22 +05:30
parent b881869205
commit 838f374448
No known key found for this signature in database
GPG key ID: E2B7342D0CAA82C2
2 changed files with 30 additions and 0 deletions

View file

@ -0,0 +1,28 @@
{ 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 ];
};
}

View file

@ -27366,6 +27366,8 @@ with pkgs;
dnd-tools = callPackage ../applications/misc/dnd-tools { };
dnglab = callPackage ../tools/graphics/dnglab { };
inherit (callPackage ../applications/virtualization/docker {})
docker_20_10;