mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 07:53:19 +00:00
76 lines
1.5 KiB
Nix
76 lines
1.5 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, dbus
|
|
, fpc
|
|
, getopt
|
|
, glib
|
|
, lazarus
|
|
, libX11
|
|
, libqt5pas
|
|
, wrapQtAppsHook
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "doublecmd";
|
|
version = "1.1.9";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "doublecmd";
|
|
repo = "doublecmd";
|
|
rev = "v${finalAttrs.version}";
|
|
hash = "sha256-NgCN72yACSzsnQdDxBM4QQCE8m5+FT31Ia51yEiXBfY=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
fpc
|
|
getopt
|
|
lazarus
|
|
wrapQtAppsHook
|
|
];
|
|
|
|
buildInputs = [
|
|
dbus
|
|
glib
|
|
libX11
|
|
libqt5pas
|
|
];
|
|
|
|
env.NIX_LDFLAGS = "--as-needed -rpath ${lib.makeLibraryPath finalAttrs.buildInputs}";
|
|
|
|
postPatch = ''
|
|
patchShebangs build.sh install/linux/install.sh
|
|
substituteInPlace build.sh \
|
|
--replace '$(which lazbuild)' '"${lazarus}/bin/lazbuild --lazarusdir=${lazarus}/share/lazarus"'
|
|
substituteInPlace install/linux/install.sh \
|
|
--replace '$DC_INSTALL_PREFIX/usr' '$DC_INSTALL_PREFIX'
|
|
'';
|
|
|
|
buildPhase = ''
|
|
runHook preBuild
|
|
|
|
export HOME=$(mktemp -d)
|
|
./build.sh release qt5
|
|
|
|
runHook postBuild
|
|
'';
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
install/linux/install.sh -I $out
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = {
|
|
homepage = "https://doublecmd.sourceforge.io/";
|
|
description = "Two-panel graphical file manager written in Pascal";
|
|
license = lib.licenses.gpl2Plus;
|
|
mainProgram = "doublecmd";
|
|
maintainers = with lib.maintainers; [ AndersonTorres ];
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
})
|
|
# TODO: deal with other platforms too
|