nixpkgs/pkgs/applications/office/mytetra/default.nix

41 lines
1.1 KiB
Nix
Raw Normal View History

2021-11-02 14:23:29 +01:00
{ lib, mkDerivation, fetchFromGitHub, qmake, qtsvg, makeWrapper, xdg-utils }:
2017-03-18 11:53:42 +01:00
2021-11-02 14:23:29 +01:00
mkDerivation rec {
2019-08-13 23:52:01 +02:00
pname = "mytetra";
2021-11-02 14:23:29 +01:00
version = "1.44.55";
src = fetchFromGitHub {
owner = "xintrea";
repo = "mytetra_dev";
rev = "v.${version}";
sha256 = "sha256-jQXnDoLkqbDZxfsYKPDsTOE7p/BFeA8wEznpbkRVGdw=";
2017-03-18 11:53:42 +01:00
};
nativeBuildInputs = [ qmake makeWrapper ];
2017-06-02 17:40:19 +02:00
buildInputs = [ qtsvg ];
2017-03-18 11:53:42 +01:00
hardeningDisable = [ "format" ];
preBuild = ''
2019-01-11 22:40:29 +01:00
substituteInPlace app/app.pro \
2017-03-18 11:53:42 +01:00
--replace /usr/local/bin $out/bin \
--replace /usr/share $out/share
2019-01-11 22:40:29 +01:00
substituteInPlace app/src/views/mainWindow/MainWindow.cpp \
2017-03-18 11:53:42 +01:00
--replace ":/resource/pic/logo.svg" "$out/share/icons/hicolor/48x48/apps/mytetra.png"
'';
postFixup = ''
wrapProgram $out/bin/mytetra \
2021-02-01 09:05:09 +01:00
--prefix PATH : ${xdg-utils}/bin
'';
meta = with lib; {
2017-03-18 11:53:42 +01:00
description = "Smart manager for information collecting";
homepage = "https://webhamster.ru/site/page/index/articles/projectcode/138";
2017-03-18 11:53:42 +01:00
license = licenses.gpl3;
maintainers = [ ];
2017-03-18 11:53:42 +01:00
platforms = platforms.linux;
};
}