mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 12:07:47 +03:00
Merge pull request #10412 from puffnfresh/package/leela
leela: init at 12.fe7a35a
This commit is contained in:
commit
19bcba1fd4
23
pkgs/tools/graphics/leela/default.nix
Normal file
23
pkgs/tools/graphics/leela/default.nix
Normal file
@ -0,0 +1,23 @@
|
||||
{ stdenv, fetchFromGitHub, pkgconfig, poppler }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "leela-12.fe7a35a";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "TrilbyWhite";
|
||||
repo = "Leela";
|
||||
rev = "576a60185b191d3a3030fef10492fe32d2125563";
|
||||
sha256 = "1k6n758r9dhjmc1pnpk6qzpg0q7pkq2hf18z3b0s2z198jpkg9s3";
|
||||
};
|
||||
|
||||
buildInputs = [ pkgconfig poppler ];
|
||||
|
||||
installFlags = [ "PREFIX=$(out)" "MANDIR=$(out)/share/man" ];
|
||||
|
||||
meta = {
|
||||
description = "CLI frontend to the poppler-glib libary of PDF tools";
|
||||
homepage = https://github.com/TrilbyWhite/Leela;
|
||||
license = stdenv.lib.licenses.gpl3;
|
||||
maintainers = [ stdenv.lib.maintainers.puffnfresh ];
|
||||
};
|
||||
}
|
@ -2057,6 +2057,8 @@ let
|
||||
|
||||
leafpad = callPackage ../applications/editors/leafpad { };
|
||||
|
||||
leela = callPackage ../tools/graphics/leela { };
|
||||
|
||||
lftp = callPackage ../tools/networking/lftp { };
|
||||
|
||||
libconfig = callPackage ../development/libraries/libconfig { };
|
||||
|
Loading…
Reference in New Issue
Block a user