mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
80dd852936
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/catimg/versions
27 lines
561 B
Nix
27 lines
561 B
Nix
{ stdenv, fetchFromGitHub, cmake } :
|
|
|
|
with stdenv.lib;
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "catimg";
|
|
version = "2.6.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "posva";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "0g9ywbgy162wiam9hc3yqpq5q4gyxa8fj4jskr3fdz8z8jjaabzz";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
meta = {
|
|
license = licenses.mit;
|
|
homepage = "https://github.com/posva/catimg";
|
|
description = "Insanely fast image printing in your terminal";
|
|
maintainers = with maintainers; [ ryantm ];
|
|
platforms = platforms.unix;
|
|
};
|
|
|
|
}
|