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

Commits on Jan 29, 2020

  1. Copy the full SHA
    0cc1f3e View commit details
  2. Copy the full SHA
    4b1097d View commit details

Commits on Jan 31, 2020

  1. Merge pull request #78756 from mmahut/chrome-token-signing

    chrome-token-signing: 1.0.7 -> 1.1.0
    mmahut authored Jan 31, 2020

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    9e85d5c View commit details
Showing with 11 additions and 3 deletions.
  1. +11 −3 pkgs/tools/security/chrome-token-signing/default.nix
14 changes: 11 additions & 3 deletions pkgs/tools/security/chrome-token-signing/default.nix
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{ mkDerivation, fetchFromGitHub, qmake, pcsclite, pkgconfig, opensc }:
{ stdenv, mkDerivation, fetchFromGitHub, qmake, pcsclite, pkgconfig, opensc }:

mkDerivation rec {
pname = "chrome-token-signing";
version = "1.0.7";
version = "1.1.0";

src = fetchFromGitHub {
owner = "open-eid";
repo = "chrome-token-signing";
rev = "v${version}";
sha256 = "1icbr5gyf7qqk1qjgcrf6921ws84j5h8zrpzw5mirq4582l5gsav";
sha256 = "1bksh7xrgqfmyrl04l0fri4ldigb1vkzff32n89bnl44nd42bgcr";
};

buildInputs = [ qmake pcsclite pkgconfig ];
@@ -27,4 +27,12 @@ mkDerivation rec {
install -D -t $out/etc/chromium/native-messaging-hosts host-linux/ee.ria.esteid.json
install -D -t $out/lib/mozilla/native-messaging-hosts host-linux/ff/ee.ria.esteid.json
'';

meta = with stdenv.lib; {
description = "Chrome and Firefox extension for signing with your eID on the web";
homepage = "https://github.com/open-eid/chrome-token-signing/wiki";
license = licenses.lgpl21;
maintainers = [ maintainers.mmahut ];
platforms = platforms.linux;
};
}