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

Commits on Jan 25, 2021

  1. sqlcipher: 4.4.0 -> 4.4.2

    dotlambda committed Jan 25, 2021

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    cole-h Cole Helbling
    Copy the full SHA
    45da9fe View commit details
  2. Merge pull request #110768 from dotlambda/sqlcipher-4.4.2

    sqlcipher: 4.4.0 -> 4.4.2
    SuperSandro2000 authored Jan 25, 2021
    Copy the full SHA
    32d4ea3 View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/development/libraries/sqlcipher/default.nix
4 changes: 2 additions & 2 deletions pkgs/development/libraries/sqlcipher/default.nix
Original file line number Diff line number Diff line change
@@ -4,13 +4,13 @@ assert readline != null -> ncurses != null;

stdenv.mkDerivation rec {
pname = "sqlcipher";
version = "4.4.0";
version = "4.4.2";

src = fetchFromGitHub {
owner = "sqlcipher";
repo = "sqlcipher";
rev = "v${version}";
sha256 = "0mx0n5n3s39r25b31sdkrd4psxjqqgcv6rpm9d57w5rlk75g2fiv";
sha256 = "0zhww6fpnfflnzp6091npz38ab6cpq75v3ghqvcj5kqg09vqm5na";
};

nativeBuildInputs = [ installShellFiles ];