mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 06:53:01 +00:00
9a624d10e3
Since theey is not active from at least six years. All the packages on this commit became orphans. --------------------------------------------------------------------------- There are files not covered by this commit, because they will be adopted soon. Namely: - pkgs/by-name/zs/zsync/package.nix - pkgs/games/bsdgames/default.nix - pkgs/misc/ghostscript/default.nix - pkgs/os-specific/linux/kernel/perf/default.nix - pkgs/tools/system/logrotate/default.nix
79 lines
1.6 KiB
Nix
79 lines
1.6 KiB
Nix
{ lib
|
|
, boost
|
|
, fetchFromGitHub
|
|
, installShellFiles
|
|
, mkDerivation
|
|
, muparser
|
|
, pkg-config
|
|
, qmake
|
|
, qtbase
|
|
, qtsvg
|
|
, qttools
|
|
, runtimeShell
|
|
}:
|
|
|
|
mkDerivation rec {
|
|
pname = "librecad";
|
|
version = "2.2.0.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "LibreCAD";
|
|
repo = "LibreCAD";
|
|
rev = version;
|
|
sha256 = "sha256-Vj6nvOfmhzou2hhmujm47a7aKBzmgchDb/BbwCb3/hI=";
|
|
};
|
|
|
|
buildInputs = [
|
|
boost
|
|
muparser
|
|
qtbase
|
|
qtsvg
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
installShellFiles
|
|
pkg-config
|
|
qmake
|
|
qttools
|
|
];
|
|
|
|
qmakeFlags = [
|
|
"MUPARSER_DIR=${muparser}"
|
|
"BOOST_DIR=${boost.dev}"
|
|
];
|
|
|
|
postPatch = ''
|
|
substituteInPlace scripts/postprocess-unix.sh \
|
|
--replace /bin/sh ${runtimeShell}
|
|
|
|
substituteInPlace librecad/src/main/qc_applicationwindow.cpp \
|
|
--replace __DATE__ 0
|
|
'';
|
|
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
install -Dm555 -t $out/bin unix/{librecad,ttf2lff}
|
|
install -Dm444 -t $out/share/applications desktop/librecad.desktop
|
|
install -Dm644 -t $out/share/pixmaps librecad/res/main/librecad.png
|
|
install -Dm444 desktop/librecad.sharedmimeinfo $out/share/mime/packages/librecad.xml
|
|
install -Dm444 desktop/graphics_icons_and_splash/Icon\ LibreCAD/Icon_Librecad.svg \
|
|
$out/share/icons/hicolor/scalable/apps/librecad.svg
|
|
|
|
installManPage desktop/librecad.?
|
|
|
|
cp -R unix/resources $out/share/librecad
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "2D CAD package based on Qt";
|
|
homepage = "https://librecad.org";
|
|
license = licenses.gpl2Only;
|
|
maintainers = [ ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|