mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-10-30 06:01:19 +00:00
icnsify: init at 0.1.0
This commit is contained in:
parent
48705e5f4d
commit
727f770806
29
pkgs/by-name/ic/icnsify/package.nix
Normal file
29
pkgs/by-name/ic/icnsify/package.nix
Normal 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";
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user