mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-15 13:37:21 +03:00
commit
ecdd2721da
19
pkgs/development/libraries/libsixel/default.nix
Normal file
19
pkgs/development/libraries/libsixel/default.nix
Normal file
@ -0,0 +1,19 @@
|
||||
{stdenv, fetchFromGitHub}:
|
||||
stdenv.mkDerivation rec {
|
||||
version = "1.6.1";
|
||||
name = "libsixel-${version}";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
repo = "libsixel";
|
||||
rev = "ef4374f80385edc48e0844cf324d7ef757688e44";
|
||||
owner = "saitoha";
|
||||
sha256 = "08m5q2ppk235bzbwff1wg874vr1bh4080qdj26l39v8lw1xzlqcp";
|
||||
};
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "The SIXEL library for console graphics, and converter programs";
|
||||
homepage = http://saitoha.github.com/libsixel;
|
||||
maintainers = with maintainers; [ vrthra ];
|
||||
license = licenses.mit;
|
||||
};
|
||||
}
|
@ -7952,6 +7952,8 @@ in
|
||||
|
||||
libsieve = callPackage ../development/libraries/libsieve { };
|
||||
|
||||
libsixel = callPackage ../development/libraries/libsixel { };
|
||||
|
||||
libsolv = callPackage ../development/libraries/libsolv { };
|
||||
|
||||
libspectre = callPackage ../development/libraries/libspectre { };
|
||||
|
Loading…
Reference in New Issue
Block a user