depot/pkgs/by-name/ic/icnsify/package.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

29 lines
617 B
Nix

{
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";
};
}