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

40 lines
1.1 KiB
Nix
Raw Normal View History

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