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

Commits on Mar 3, 2019

  1. squirrel-sql: 3.9.0 -> 3.9.1

    Semi-automatic update generated by
    https://github.com/ryantm/nixpkgs-update tools. This update was made
    based on information from
    https://repology.org/metapackage/squirrel-sql/versions
    r-ryantm authored and FRidh committed Mar 3, 2019
    Copy the full SHA
    63c99f3 View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/development/tools/database/squirrel-sql/default.nix
4 changes: 2 additions & 2 deletions pkgs/development/tools/database/squirrel-sql/default.nix
Original file line number Diff line number Diff line change
@@ -5,13 +5,13 @@
, drivers ? []
}:
let
version = "3.9.0";
version = "3.9.1";
in stdenv.mkDerivation rec {
name = "squirrel-sql-${version}";

src = fetchurl {
url = "mirror://sourceforge/project/squirrel-sql/1-stable/${version}-plainzip/squirrelsql-${version}-standard.zip";
sha256 = "0b16l7p7klagxnwkx2az4mbyd35kv4aj8xxbwm27pp3spz9dk8m0";
sha256 = "1xpkh9kwdjzd0zks8c4mq3add9ivc24hb0hflp11dl32dsdmzrai";
};

nativeBuildInputs = [ makeWrapper unzip ];