mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
41 lines
1.1 KiB
Nix
41 lines
1.1 KiB
Nix
{ lib, mkDerivation, fetchFromGitHub, qmake, qtsvg, makeWrapper, xdg-utils }:
|
|
|
|
mkDerivation rec {
|
|
pname = "mytetra";
|
|
version = "1.44.55";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "xintrea";
|
|
repo = "mytetra_dev";
|
|
rev = "v.${version}";
|
|
sha256 = "sha256-jQXnDoLkqbDZxfsYKPDsTOE7p/BFeA8wEznpbkRVGdw=";
|
|
};
|
|
|
|
nativeBuildInputs = [ qmake makeWrapper ];
|
|
buildInputs = [ qtsvg ];
|
|
|
|
hardeningDisable = [ "format" ];
|
|
|
|
preBuild = ''
|
|
substituteInPlace app/app.pro \
|
|
--replace /usr/local/bin $out/bin \
|
|
--replace /usr/share $out/share
|
|
|
|
substituteInPlace app/src/views/mainWindow/MainWindow.cpp \
|
|
--replace ":/resource/pic/logo.svg" "$out/share/icons/hicolor/48x48/apps/mytetra.png"
|
|
'';
|
|
|
|
postFixup = ''
|
|
wrapProgram $out/bin/mytetra \
|
|
--prefix PATH : ${xdg-utils}/bin
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Smart manager for information collecting";
|
|
homepage = "https://webhamster.ru/site/page/index/articles/projectcode/138";
|
|
license = licenses.gpl3;
|
|
maintainers = [ ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|