icnsify: init at 0.1.0

This commit is contained in:
uncenter 2024-05-05 21:12:30 -04:00
parent 48705e5f4d
commit 727f770806
No known key found for this signature in database
1 changed files with 29 additions and 0 deletions

View File

@ -0,0 +1,29 @@
{
lib,
rustPlatform,
fetchFromGitHub,
}:
let
version = "0.1.0";
in
rustPlatform.buildRustPackage {
pname = "icnsify";
inherit version;
src = fetchFromGitHub {
owner = "uncenter";
repo = "icnsify";
rev = "v${version}";
hash = "sha256-v8jwN29S6ZTt2XkPpZM+lJugbP9ClzPhqu52mdwdP00=";
};
cargoHash = "sha256-5wgioCOKvZ0J/t5v/Ic3unAA5h5Bt6MuCUzFJP7Dusw=";
meta = {
description = "Convert PNGs to .icns";
homepage = "https://github.com/uncenter/icnsify";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ uncenter ];
mainProgram = "icnsify";
};
}