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

Commits on Jan 15, 2020

  1. doodle: 0.7.0 -> 0.7.1

    r-ryantm committed Jan 15, 2020
    Copy the full SHA
    1ed242a View commit details

Commits on Jan 20, 2020

  1. Merge pull request #77751 from r-ryantm/auto-update/doodle

    doodle: 0.7.0 -> 0.7.1
    marsam authored Jan 20, 2020
    Copy the full SHA
    8f71973 View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/applications/search/doodle/default.nix
4 changes: 2 additions & 2 deletions pkgs/applications/search/doodle/default.nix
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{ stdenv, fetchurl, libextractor, gettext }:

stdenv.mkDerivation rec {
name = "doodle-0.7.0";
name = "doodle-0.7.1";

buildInputs = [ libextractor gettext ];

src = fetchurl {
url = "https://grothoff.org/christian/doodle/download/${name}.tar.gz";
sha256 = "0ayx5q7chzll9sv3miq35xl36r629cvgdzphf379kxzlzhjldy3j";
sha256 = "086va4q8swiablv5x72yikrdh5swhy7kzmg5wlszi5a7vjya29xw";
};

meta = {