Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: c88e09d46f31
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 782c820ad93a
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Oct 24, 2018

  1. mytetra: support opening urls under wayland (#48641)

    gnidorah authored and xeji committed Oct 24, 2018
    Copy the full SHA
    782c820 View commit details
Showing with 7 additions and 2 deletions.
  1. +7 −2 pkgs/applications/office/mytetra/default.nix
9 changes: 7 additions & 2 deletions pkgs/applications/office/mytetra/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ stdenv, fetchurl, qmake, qtsvg }:
{ stdenv, fetchurl, qmake, qtsvg, makeWrapper, xdg_utils }:

let
version = "1.43.27";
@@ -9,7 +9,7 @@ in stdenv.mkDerivation rec {
sha256 = "1gzr11jy1bvnp28w2ar3wmh76g55jn9nra5la5qasnal6b5pg28h";
};

nativeBuildInputs = [ qmake ];
nativeBuildInputs = [ qmake makeWrapper ];
buildInputs = [ qtsvg ];

hardeningDisable = [ "format" ];
@@ -23,6 +23,11 @@ in stdenv.mkDerivation rec {
--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 stdenv.lib; {
description = "Smart manager for information collecting";
homepage = https://webhamster.ru/site/page/index/articles/projectcode/138;