forked from mirrors/nixpkgs
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
39 lines
1.1 KiB
Nix
39 lines
1.1 KiB
Nix
{ mkDerivation, lib, stdenv, fetchurl, cmake, pkgconfig, makeWrapper
|
|
, httrack, qtbase, qtmultimedia }:
|
|
|
|
mkDerivation rec {
|
|
pname = "httraqt";
|
|
version = "1.4.9";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/httraqt/${pname}-${version}.tar.gz";
|
|
sha256 = "0pjxqnqchpbla4xiq4rklc06484n46cpahnjy03n9rghwwcad25b";
|
|
};
|
|
|
|
buildInputs = [ httrack qtbase qtmultimedia ];
|
|
|
|
nativeBuildInputs = [ cmake makeWrapper pkgconfig ];
|
|
|
|
prePatch = ''
|
|
substituteInPlace cmake/HTTRAQTFindHttrack.cmake \
|
|
--replace /usr/include/httrack/ ${httrack}/include/httrack/
|
|
|
|
substituteInPlace distribution/posix/CMakeLists.txt \
|
|
--replace /usr/share $out/share
|
|
|
|
substituteInPlace desktop/httraqt.desktop \
|
|
--replace Exec=httraqt Exec=$out/bin/httraqt
|
|
|
|
substituteInPlace sources/main/httraqt.cpp \
|
|
--replace /usr/share/httraqt/ $out/share/httraqt
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Easy-to-use offline browser / website mirroring utility - QT frontend";
|
|
homepage = "http://www.httrack.com";
|
|
license = licenses.gpl3;
|
|
maintainers = with maintainers; [ peterhoeg ];
|
|
platforms = with platforms; unix;
|
|
};
|
|
}
|