Skip to content
This repository was archived by the owner on Apr 12, 2021. It is now read-only.
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-channels
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: fd1c513acaec
Choose a base ref
...
head repository: NixOS/nixpkgs-channels
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 2cd2e7267e5b
Choose a head ref
  • 7 commits
  • 6 files changed
  • 7 contributors

Commits on Jun 7, 2020

  1. Copy the full SHA
    36d52ba View commit details

Commits on Jun 10, 2020

  1. KAppTemplate: Init at 19.12.3

    SCOTT-HAMILTON committed Jun 10, 2020

    Verified

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

Commits on Jun 22, 2020

  1. topgrade: 4.7.0 -> 4.8.0

    Br1ght0ne committed Jun 22, 2020
    Copy the full SHA
    4c0a6e8 View commit details

Commits on Jun 23, 2020

  1. Merge pull request #89803 from SCOTT-HAMILTON/KAppTemplate

    kapptemplate: init at 19.12.3
    peterhoeg authored Jun 23, 2020
    Copy the full SHA
    12ab0bd View commit details
  2. Merge pull request #91274 from filalex77/topgrade-4.8.0

    topgrade: 4.7.0 -> 4.8.0
    danieldk authored Jun 23, 2020
    Copy the full SHA
    fdfe99b View commit details
  3. Copy the full SHA
    05eefe5 View commit details
  4. Merge pull request #89733 from sikmir/aerc

    aerc: unstable-2020-02-01 -> 0.4.0
    dywedir authored Jun 23, 2020
    Copy the full SHA
    2cd2e72 View commit details
1 change: 1 addition & 0 deletions pkgs/applications/kde/default.nix
Original file line number Diff line number Diff line change
@@ -89,6 +89,7 @@ let
kaddressbook = callPackage ./kaddressbook.nix {};
kalarm = callPackage ./kalarm.nix {};
kalarmcal = callPackage ./kalarmcal.nix {};
kapptemplate = callPackage ./kapptemplate.nix { };
kate = callPackage ./kate.nix {};
kbreakout = callPackage ./kbreakout.nix {};
kcachegrind = callPackage ./kcachegrind.nix {};
24 changes: 24 additions & 0 deletions pkgs/applications/kde/kapptemplate.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{ lib
, mkDerivation
, fetchurl
, cmake
, extra-cmake-modules
, qtbase
, kactivities
}:
mkDerivation {

name = "kapptemplate";

nativeBuildInputs = [ extra-cmake-modules cmake ];

buildInputs = [ kactivities qtbase ];

meta = with lib; {
description = "KDE App Code Template Generator";
license = licenses.gpl2;
homepage = "https://kde.org/applications/en/development/org.kde.kapptemplate";
maintainers = [ maintainers.shamilton ];
platforms = platforms.linux;
};
}
12 changes: 5 additions & 7 deletions pkgs/applications/networking/mailreaders/aerc/default.nix
Original file line number Diff line number Diff line change
@@ -4,15 +4,13 @@
, fetchFromGitHub
}:

let
rev = "ea0df7bee433fedae5716906ea56141f92b9ce53";
in buildGoModule rec {
buildGoModule rec {
pname = "aerc";
version = "unstable-2020-02-01";
version = "0.4.0";

src = fetchurl {
url = "https://git.sr.ht/~sircmpwn/aerc/archive/${rev}.tar.gz";
sha256 = "1bx2fypw053v3bzalfgyi6a0s5fvv040z8jy4i63s7p53m8gmzs9";
url = "https://git.sr.ht/~sircmpwn/aerc/archive/${version}.tar.gz";
sha256 = "05qy14k9wmyhsg1hiv4njfx1zn1m9lz4d1p50kc36v7pq0n4csfk";
};

libvterm = fetchFromGitHub {
@@ -22,7 +20,7 @@ in buildGoModule rec {
sha256 = "06vv4pgx0i6hjdjcar4ch18hp9g6q6687mbgkvs8ymmbacyhp7s6";
};

vendorSha256 = "0rnyjjlsxsi0y23m6ckyd52562m33qr35fvdcdzy31mbfpi8kl2k";
vendorSha256 = "1rqn36510m0yb7k4bvq2hgirr3z8a2h5xa7cq5mb84xsmhvf0g69";

overrideModAttrs = (_: {
postBuild = ''
6 changes: 3 additions & 3 deletions pkgs/development/coq-modules/simple-io/default.nix
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{ stdenv, fetchFromGitHub, coq, coq-ext-lib }:

stdenv.mkDerivation rec {
version = "1.2.0";
version = "1.3.0";
name = "coq${coq.coq-version}-simple-io-${version}";
src = fetchFromGitHub {
owner = "Lysxia";
repo = "coq-simple-io";
rev = version;
sha256 = "1im1vwp7l7ha8swnhgbih0qjg187n8yx14i003nf6yy7p0ryxc9m";
sha256 = "1yp7ca36jyl9kz35ghxig45x6cd0bny2bpmy058359p94wc617ax";
};

buildInputs = [ coq ] ++ (with coq.ocamlPackages; [ ocaml ocamlbuild ]);
@@ -28,7 +28,7 @@ stdenv.mkDerivation rec {
};

passthru = {
compatibleCoqVersions = v: builtins.elem v [ "8.7" "8.8" "8.9" "8.10" ];
compatibleCoqVersions = v: builtins.elem v [ "8.7" "8.8" "8.9" "8.10" "8.11" ];
};

}
6 changes: 3 additions & 3 deletions pkgs/tools/misc/topgrade/default.nix
Original file line number Diff line number Diff line change
@@ -2,16 +2,16 @@

rustPlatform.buildRustPackage rec {
pname = "topgrade";
version = "4.7.0";
version = "4.8.0";

src = fetchFromGitHub {
owner = "r-darwish";
repo = pname;
rev = "v${version}";
sha256 = "1hg03mj3rd778hq1856139nwz7y5gykwvg7xhxlsiabv7gr06m2m";
sha256 = "1rskk3cb253xbdn42ccm5ks39xac4q1hgz67nfi1hpwnavpx5g6p";
};

cargoSha256 = "14qv2157jhj7hilvqi3c00p11rzv0vvimr4d34nyspgzxz2si6sm";
cargoSha256 = "0d00r52qhahdx1yylpri7cm85csvy0bwzspwgwqwgilxcfnf5a16";

buildInputs = lib.optional stdenv.isDarwin Foundation;

2 changes: 1 addition & 1 deletion pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
@@ -20528,7 +20528,7 @@ in

inherit (kdeApplications)
akonadi akregator ark dolphin dragon elisa ffmpegthumbs filelight gwenview k3b
kaddressbook kate kcachegrind kcalc kcharselect kcolorchooser kdenlive kdf kdialog
kaddressbook kapptemplate kate kcachegrind kcalc kcharselect kcolorchooser kdenlive kdf kdialog
keditbookmarks kfind kget kgpg khelpcenter kig kleopatra kmail kmix kmplot kolourpaint kompare konsole yakuake
kpkpass kitinerary kontact korganizer krdc krfb ksystemlog ktouch kwalletmanager marble minuet okular spectacle;