nixpkgs/pkgs/by-name/do/doublecmd/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

76 lines
1.5 KiB
Nix
Raw Normal View History

2022-06-27 00:30:23 +02:00
{ lib
, stdenv
, fetchFromGitHub
, dbus
, fpc
, getopt
, glib
, lazarus
, libX11
, libqt5pas
, wrapQtAppsHook
}:
stdenv.mkDerivation (finalAttrs: {
2022-06-27 00:30:23 +02:00
pname = "doublecmd";
2024-03-14 02:30:55 +01:00
version = "1.1.11";
2022-06-27 00:30:23 +02:00
src = fetchFromGitHub {
owner = "doublecmd";
repo = "doublecmd";
rev = "v${finalAttrs.version}";
2024-03-14 02:30:55 +01:00
hash = "sha256-8kxaJp9mSJ6fHOgVD5iFjecUU0Kt10KCAVSYMQt+bSw=";
2022-06-27 00:30:23 +02:00
};
nativeBuildInputs = [
fpc
getopt
lazarus
wrapQtAppsHook
];
buildInputs = [
dbus
glib
libX11
libqt5pas
];
2023-10-15 05:45:39 +02:00
env.NIX_LDFLAGS = "--as-needed -rpath ${lib.makeLibraryPath finalAttrs.buildInputs}";
2022-06-27 00:30:23 +02:00
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
'';
2023-10-15 05:45:39 +02:00
meta = {
2022-06-27 00:30:23 +02:00
homepage = "https://doublecmd.sourceforge.io/";
description = "Two-panel graphical file manager written in Pascal";
2023-10-15 05:45:39 +02:00
license = lib.licenses.gpl2Plus;
mainProgram = "doublecmd";
maintainers = with lib.maintainers; [ AndersonTorres ];
platforms = lib.platforms.linux;
2022-06-27 00:30:23 +02:00
};
})
2022-06-27 00:30:23 +02:00
# TODO: deal with other platforms too