mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-03 20:33:21 +00:00
9e2c8d4d8e
Diff: https://github.com/foresterre/sic/compare/v0.21.0...v0.21.1 Changelog: https://github.com/foresterre/sic/blob/v0.21.1/CHANGELOG.md
36 lines
987 B
Nix
36 lines
987 B
Nix
{ lib, rustPlatform, fetchFromGitHub, installShellFiles, nasm }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "sic-image-cli";
|
|
version = "0.21.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "foresterre";
|
|
repo = "sic";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-JSBvHbqGTwjiKRPuomXtFLgu77ZB4bOlV/JgzIxaWC0=";
|
|
};
|
|
|
|
cargoSha256 = "sha256-HWnYBLxiz7Kd5rmgTFeIG8XtiRzhRKuo/vunJRPLdWU=";
|
|
|
|
nativeBuildInputs = [ installShellFiles nasm ];
|
|
|
|
postBuild = ''
|
|
cargo run --example gen_completions
|
|
'';
|
|
|
|
postInstall = ''
|
|
installShellCompletion sic.{bash,fish}
|
|
installShellCompletion --zsh _sic
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Accessible image processing and conversion from the terminal";
|
|
homepage = "https://github.com/foresterre/sic";
|
|
changelog = "https://github.com/foresterre/sic/blob/v${version}/CHANGELOG.md";
|
|
license = with licenses; [ asl20 /* or */ mit ];
|
|
maintainers = with maintainers; [ figsoda ];
|
|
mainProgram = "sic";
|
|
};
|
|
}
|