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

Commits on Jul 2, 2019

  1. rednotebook: 2.8 -> 2.11.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/rednotebook/versions
    r-ryantm committed Jul 2, 2019

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    63445c0 View commit details

Commits on Aug 3, 2019

  1. rednotebook: fix "Namespace Gtk not available" error

    gobject-introspection setup hook looks at the packages at $hostOffset to
    populate GI_TYPELIB_PATH. We need gtk3 to be there.
    orivej committed Aug 3, 2019

    Unverified

    This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
    Copy the full SHA
    da66614 View commit details
  2. Merge pull request #64189 from r-ryantm/auto-update/rednotebook

    rednotebook: 2.8 -> 2.11.1
    orivej-nixos authored Aug 3, 2019

    Unverified

    This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
    Copy the full SHA
    886176e View commit details
Showing with 6 additions and 2 deletions.
  1. +6 −2 pkgs/applications/editors/rednotebook/default.nix
8 changes: 6 additions & 2 deletions pkgs/applications/editors/rednotebook/default.nix
Original file line number Diff line number Diff line change
@@ -5,13 +5,13 @@

buildPythonApplication rec {
pname = "rednotebook";
version = "2.8";
version = "2.11.1";

src = fetchFromGitHub {
owner = "jendrikseipp";
repo = "rednotebook";
rev = "v${version}";
sha256 = "0k75lw3p6jx30ngvn8iipk1763gazkbrsad3fpl3sqppaqaggryj";
sha256 = "04c7a0wgmdl88v9386y1052c38ajbkryiwhqps5lx34d4g7r6hm1";
};

# We have not packaged tests.
@@ -30,6 +30,10 @@ buildPythonApplication rec {
"--suffix XDG_DATA_DIRS : $XDG_ICON_DIRS:$GSETTINGS_SCHEMAS_PATH"
];

# Until gobject-introspection in nativeBuildInputs is supported.
# https://github.com/NixOS/nixpkgs/issues/56943#issuecomment-472568643
strictDeps = false;

meta = with lib; {
homepage = http://rednotebook.sourceforge.net/;
description = "A modern journal that includes a calendar navigation, customizable templates, export functionality and word clouds";