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

Commits on Jan 17, 2021

  1. djvu2pdf: fix broken homepage URL

    Also updated to the appropriate license.
    LeSuisse committed Jan 17, 2021
    Copy the full SHA
    7d886df View commit details
  2. Merge pull request #109587 from LeSuisse/djvu2pdf-fix-broken-homepage…

    …-url
    
    djvu2pdf: fix broken homepage URL
    SuperSandro2000 authored Jan 17, 2021

    Verified

    This commit was signed with the committer’s verified signature.
    veprbl Dmitry Kalinkin
    Copy the full SHA
    d468254 View commit details
Showing with 2 additions and 3 deletions.
  1. +2 −3 pkgs/tools/typesetting/djvu2pdf/default.nix
5 changes: 2 additions & 3 deletions pkgs/tools/typesetting/djvu2pdf/default.nix
Original file line number Diff line number Diff line change
@@ -22,9 +22,8 @@ stdenv.mkDerivation rec {

meta = {
description = "Convert DjVu files to PDF files";
homepage = "https://0x2a.at/s/projects/djvu2pdf";
license = lib.licenses.gpl2;
homepage = "https://0x2a.at/site/projects/djvu2pdf/";
license = lib.licenses.gpl1Only;
platforms = lib.platforms.all;
inherit version;
};
}