mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 19:21:04 +00:00
69 lines
1.6 KiB
Nix
69 lines
1.6 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
qt6,
|
|
poppler,
|
|
libzip,
|
|
pkg-config,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "kitsas";
|
|
version = "5.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "artoh";
|
|
repo = "kitupiikki";
|
|
rev = "v${version}";
|
|
hash = "sha256-1TZFw1Q9+FsGHwitErDhwyA941rtb+h9OgJLFLyhV7k=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
qt6.qmake
|
|
qt6.wrapQtAppsHook
|
|
];
|
|
|
|
buildInputs =
|
|
[
|
|
libzip
|
|
poppler
|
|
qt6.qt5compat
|
|
qt6.qtsvg
|
|
qt6.qtwebengine
|
|
]
|
|
++ lib.optional stdenv.hostPlatform.isLinux [
|
|
qt6.qtwayland
|
|
];
|
|
|
|
# We use a separate build-dir as otherwise ld seems to get confused between
|
|
# directory and executable name on buildPhase.
|
|
preConfigure = ''
|
|
mkdir build && cd build
|
|
'';
|
|
|
|
qmakeFlags = [ "../kitsas/kitsas.pro" ];
|
|
|
|
installPhase =
|
|
lib.optionalString stdenv.hostPlatform.isDarwin ''
|
|
mkdir -p $out/Applications
|
|
mv kitsas.app $out/Applications
|
|
''
|
|
+ lib.optionalString (!stdenv.hostPlatform.isDarwin) ''
|
|
install -Dm755 kitsas -t $out/bin
|
|
install -Dm644 ../kitsas.svg -t $out/share/icons/hicolor/scalable/apps
|
|
install -Dm644 ../kitsas.png -t $out/share/icons/hicolor/256x256/apps
|
|
install -Dm644 ../kitsas.desktop -t $out/share/applications
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/artoh/kitupiikki";
|
|
description = "Accounting tool suitable for Finnish associations and small business";
|
|
mainProgram = "kitsas";
|
|
maintainers = with maintainers; [ gspia ];
|
|
license = licenses.gpl3Plus;
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|