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

Commits on Oct 20, 2020

  1. keepassrpc: 1.8.0 -> 1.14.0

    Dirk Osburg committed Oct 20, 2020
    Copy the full SHA
    6a1a320 View commit details

Commits on Nov 27, 2020

  1. Merge pull request #101131 from itc-ger/update/keepassrpc-1.14.0

    keepassrpc: 1.8.0 -> 1.14.0
    SuperSandro2000 authored Nov 27, 2020
    Copy the full SHA
    43ca7fb View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/applications/misc/keepass-plugins/keepassrpc/default.nix
4 changes: 2 additions & 2 deletions pkgs/applications/misc/keepass-plugins/keepassrpc/default.nix
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{ stdenv, buildEnv, fetchurl, mono }:

let
version = "1.8.0";
version = "1.14.0";
drv = stdenv.mkDerivation {
pname = "keepassrpc";
inherit version;
src = fetchurl {
url = "https://github.com/kee-org/keepassrpc/releases/download/v${version}/KeePassRPC.plgx";
sha256 = "1dclfpia559cqf78qw29zz235h1df5md4kgjv3bbi8y41wwmx7cd";
sha256 = "1c410cc93c0252e7cfdb02507b8172c13e18d12c97f08630b721d897dc9b8b24";
};

meta = with stdenv.lib; {