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: aecdd873a77b
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 84eb0bee4b6d
Choose a head ref
  • 2 commits
  • 1 file changed
  • 1 contributor

Commits on Jan 30, 2020

  1. qdigidoc: 4.1.0 -> 4.2.3

    using mkDerivation
    mmahut authored and bennofs committed Jan 30, 2020
    Copy the full SHA
    c4594f8 View commit details
  2. qdigidoc: adding mmahut as maintainer

    mmahut authored and bennofs committed Jan 30, 2020
    Copy the full SHA
    84eb0be View commit details
Showing with 6 additions and 6 deletions.
  1. +6 −6 pkgs/tools/security/qdigidoc/default.nix
12 changes: 6 additions & 6 deletions pkgs/tools/security/qdigidoc/default.nix
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{ stdenv, fetchgit, fetchurl, cmake, darkhttpd, gettext, makeWrapper, pkgconfig
{ stdenv, mkDerivation, fetchgit, fetchurl, cmake, darkhttpd, gettext, makeWrapper, pkgconfig
, libdigidocpp, opensc, openldap, openssl, pcsclite, qtbase, qttranslations, qtsvg }:

stdenv.mkDerivation rec {
mkDerivation rec {
pname = "qdigidoc";
version = "4.1.0";
version = "4.2.3";

src = fetchgit {
url = "https://github.com/open-eid/DigiDoc4-Client";
rev = "v${version}";
sha256 = "1iry36h3pfnw2gqjnfhv53i2svybxj8jf18qh486djyai84hjr4d";
sha256 = "1hj49vvg8vrayr9kpz73fafa7k298hmiamkyd8c3ipy6s51xh6q4";
fetchSubmodules = true;
};

@@ -42,9 +42,9 @@ stdenv.mkDerivation rec {

meta = with stdenv.lib; {
description = "Qt-based UI for signing and verifying DigiDoc documents";
homepage = https://www.id.ee/;
homepage = "https://www.id.ee/";
license = licenses.lgpl21Plus;
platforms = platforms.linux;
maintainers = with maintainers; [ yegortimoshenko ];
maintainers = with maintainers; [ yegortimoshenko mmahut ];
};
}