mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-20 08:59:32 +03:00
4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
40 lines
901 B
Nix
40 lines
901 B
Nix
{ mkDerivation
|
|
, lib, stdenv
|
|
, fetchFromGitHub
|
|
, qtbase
|
|
, qtsvg
|
|
, qmake
|
|
, leptonica
|
|
, tesseract
|
|
}:
|
|
|
|
mkDerivation {
|
|
pname = "qt-box-editor";
|
|
version = "unstable-2019-07-12";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "zdenop";
|
|
repo = "qt-box-editor";
|
|
rev = "75a68b466868ba41ba2886caa796057403fe1901";
|
|
sha256 = "0zwsyy7cnbhy5aazwlkhd9y8bnzlgy1gffqa46abajn4809b95k3";
|
|
};
|
|
|
|
buildInputs = [ qtbase qtsvg leptonica tesseract ];
|
|
|
|
nativeBuildInputs = [ qmake ];
|
|
|
|
# remove with next release
|
|
# https://github.com/zdenop/qt-box-editor/pull/78
|
|
postPatch = ''
|
|
printf "INSTALLS += target\ntarget.path = $out/bin" >> qt-box-editor.pro
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Editor of tesseract-ocr box files";
|
|
homepage = "https://github.com/zdenop/qt-box-editor";
|
|
license = licenses.asl20;
|
|
maintainers = [ maintainers.costrouc ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|