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: aeddf944b383
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: 75e34adda525
Choose a head ref
  • 6 commits
  • 5 files changed
  • 5 contributors

Commits on Aug 15, 2019

  1. rstudio: fix build

    Averell Dalton committed Aug 15, 2019
    Copy the full SHA
    5f10ab6 View commit details

Commits on Aug 16, 2019

  1. wtf: 0.17.1 -> 0.19.1

    yrashk committed Aug 16, 2019
    Copy the full SHA
    93194dc View commit details
  2. Merge pull request #66700 from yrashk/wtf-0.19.1

    wtf: 0.17.1 -> 0.19.1
    Mic92 authored Aug 16, 2019
    Copy the full SHA
    94bd2a0 View commit details
  3. Merge pull request #66670 from averelld/rstudio-build-fix

    rstudio: fix build
    Mic92 authored Aug 16, 2019
    Copy the full SHA
    6c15ffe View commit details
  4. ocamlPackages.mmap: init at 1.1.0

    This project provides a Mmap.map_file function for mapping files in memory.
    vbgl committed Aug 16, 2019
    Copy the full SHA
    af504e4 View commit details
  5. libgphoto2: 2.5.17 -> 2.5.23

    Dlahacz authored and Matthieu Coudron committed Aug 16, 2019
    Copy the full SHA
    75e34ad View commit details
2 changes: 1 addition & 1 deletion pkgs/applications/editors/rstudio/default.nix
Original file line number Diff line number Diff line change
@@ -46,7 +46,7 @@ stdenv.mkDerivation rec {
sha256 = "19x000m3jwnkqgi6ic81lkzyjvvxcfacw2j0vcfcaknvvagzhyhb";
};

hunspellDictionaries = with stdenv.lib; filter isDerivation (attrValues hunspellDicts);
hunspellDictionaries = with stdenv.lib; filter isDerivation (unique (attrValues hunspellDicts));

mathJaxSrc = fetchurl {
url = https://s3.amazonaws.com/rstudio-buildtools/mathjax-26.zip;
19 changes: 14 additions & 5 deletions pkgs/applications/misc/wtf/default.nix
Original file line number Diff line number Diff line change
@@ -1,20 +1,29 @@
{ buildGoPackage
{ buildGoModule
, fetchFromGitHub
, lib
}:

buildGoPackage rec {
buildGoModule rec {
pname = "wtf";
version = "0.17.1";
version = "0.19.1";

src = fetchFromGitHub {
owner = "wtfutil";
repo = pname;
rev = "v${version}";
sha256 = "1qiwl6z5rraspjqry8dwnx8fgl9vv70sn5kgvh8074vl651yjq8c";
sha256 = "19qzg5blqm5p7rrnaqh4f9aj53i743mawjnd1h9lfahbgmil1d24";
};

goPackagePath = "github.com/wtfutil/wtf";
modSha256 = "1q21pc4yyiq4dihsb9n7261ssj52nnik8dq6fg4gvlnnpgcjp570";

# As per https://github.com/wtfutil/wtf/issues/501, one of the
# dependencies can't be fetched, so vendored dependencies should
# be used instead
modBuildPhase = ''
runHook preBuild
make build -mod=vendor
runHook postBuild
'';

meta = with lib; {
description = "The personal information dashboard for your terminal";
6 changes: 3 additions & 3 deletions pkgs/development/libraries/libgphoto2/default.nix
Original file line number Diff line number Diff line change
@@ -7,7 +7,7 @@ stdenv.mkDerivation rec {
owner = "gphoto";
repo = "libgphoto2";
rev = "${meta.tag}";
sha256 = "0pbfg89817qkb35mmajsw2iz6j9nhkkj67m419f8x8yxpqkaa0wb";
sha256 = "1sc2ycx11khf0qzp1cqxxx1qymv6bjfbkx3vvbwz6wnbyvsigxz2";
};

patches = [];
@@ -33,8 +33,8 @@ stdenv.mkDerivation rec {
MTP, and other vendor specific protocols for controlling and transferring data
from digital cameras.
'';
version = "2.5.17";
tag = "libgphoto2-2_5_17-release";
version = "2.5.23";
tag = "libgphoto2-2_5_23-release";
# XXX: the homepage claims LGPL, but several src files are lgpl21Plus
license = stdenv.lib.licenses.lgpl21Plus;
platforms = with stdenv.lib.platforms; unix;
18 changes: 18 additions & 0 deletions pkgs/development/ocaml-modules/mmap/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{ lib, buildDunePackage, fetchurl }:

buildDunePackage rec {
pname = "mmap";
version = "1.1.0";

src = fetchurl {
url = "https://github.com/mirage/mmap/releases/download/v${version}/mmap-v${version}.tbz";
sha256 = "0l6waidal2n8mkdn74avbslvc10sf49f5d889n838z03pra5chsc";
};

meta = {
homepage = "https://github.com/mirage/mmap";
description = "Function for mapping files in memory";
license = lib.licenses.lgpl21;
maintainers = [ lib.maintainers.vbgl ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/ocaml-packages.nix
Original file line number Diff line number Diff line change
@@ -450,6 +450,8 @@ let

mlgmpidl = callPackage ../development/ocaml-modules/mlgmpidl { };

mmap = callPackage ../development/ocaml-modules/mmap { };

mparser = callPackage ../development/ocaml-modules/mparser { };

mstruct = callPackage ../development/ocaml-modules/mstruct { };