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: f244c4fe5e3f
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: 2c347116b5b2
Choose a head ref
  • 12 commits
  • 8 files changed
  • 9 contributors

Commits on May 28, 2019

  1. halide: fix to llvm6

    Fails to build with llvm7
    markuskowa committed May 28, 2019
    Copy the full SHA
    ea60fc9 View commit details

Commits on May 30, 2019

  1. robin-map: init at 0.6.1

    jtojnar committed May 30, 2019
    Copy the full SHA
    4a40504 View commit details
  2. openimageio2: init at 2.0.8

    jtojnar committed May 30, 2019
    Copy the full SHA
    488d23f View commit details
  3. Copy the full SHA
    fefd28f View commit details

Commits on May 31, 2019

  1. skaffold: 0.29.0 -> 0.30.0

    Signed-off-by: Vincent Demeester <vincent@sbr.pm>
    vdemeester committed May 31, 2019
    Copy the full SHA
    d03430d View commit details
  2. neovim-unwrapped: don't fix cmake

    Pollutes git status
    teto authored and Matthieu Coudron committed May 31, 2019
    Copy the full SHA
    66a1e97 View commit details
  3. Merge pull request #62285 from vdemeester/update-skaffold

    skaffold: 0.29.0 -> 0.30.0
    nlewo authored May 31, 2019
    Copy the full SHA
    f3eaa07 View commit details
  4. yubikey-manager-gui: revert part of 2e359d9

    Fixes #62210
    bricewge committed May 31, 2019
    Copy the full SHA
    5aa3350 View commit details
  5. Merge pull request #62261 from bricewge/ykman-gui-otp

    yubikey-manager-gui: revert part of 2e359d9
    Mic92 authored May 31, 2019
    Copy the full SHA
    0c6fb79 View commit details
  6. Merge pull request #62154 from markuskowa/fix-halide

    halide: fix to llvm6
    markuskowa authored May 31, 2019
    Copy the full SHA
    40cc9cf View commit details
  7. vimPlugins: update (#62299)

    timokau authored May 31, 2019
    Copy the full SHA
    32ba4cf View commit details
  8. Merge pull request #62237 from jtojnar/openimageio2

    openimageio2: init at 2.0.8
    jtojnar authored May 31, 2019
    Copy the full SHA
    2c34711 View commit details
3 changes: 2 additions & 1 deletion pkgs/applications/editors/neovim/default.nix
Original file line number Diff line number Diff line change
@@ -37,6 +37,7 @@ in
./system_rplugin_manifest.patch
];

dontFixCmake = true;
enableParallelBuilding = true;

buildInputs = [
@@ -76,7 +77,7 @@ in
disallowedReferences = [ stdenv.cc ];

cmakeFlags = [
"-DLUA_PRG=${neovimLuaEnv}/bin/lua"
"-DLUA_PRG=${neovimLuaEnv.interpreter}"
"-DGPERF_PRG=${gperf}/bin/gperf"
]
++ optional doCheck "-DBUSTED_PRG=${neovimLuaEnv}/bin/busted"
60 changes: 60 additions & 0 deletions pkgs/applications/graphics/openimageio/2.x.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
{ stdenv
, fetchFromGitHub
, boost
, cmake
, ilmbase
, libjpeg
, libpng
, libtiff
, opencolorio
, openexr
, robin-map
, unzip
}:

stdenv.mkDerivation rec {
pname = "openimageio";
version = "2.0.8";

src = fetchFromGitHub {
owner = "OpenImageIO";
repo = "oiio";
rev = "Release-${version}";
sha256 = "0nk72h7q1n664b268zkhibb7a3i7fb3nl2z7fg31ys5r9zlq6mnp";
};

outputs = [ "bin" "out" "dev" "doc" ];

nativeBuildInputs = [
cmake
unzip
];

buildInputs = [
boost
ilmbase
libjpeg
libpng
libtiff
opencolorio
openexr
robin-map
];

cmakeFlags = [
"-DUSE_PYTHON=OFF"
"-DUSE_QT=OFF"
# GNUInstallDirs
"-DCMAKE_INSTALL_BINDIR=${placeholder "bin"}/bin"
"-DCMAKE_INSTALL_INCLUDEDIR=${placeholder "dev"}/include"
"-DCMAKE_INSTALL_LIBDIR=lib" # needs relative path for pkgconfig
];

meta = with stdenv.lib; {
homepage = http://www.openimageio.org;
description = "A library and tools for reading and writing images";
license = licenses.bsd3;
maintainers = with maintainers; [ goibhniu jtojnar ];
platforms = platforms.unix;
};
}
25 changes: 11 additions & 14 deletions pkgs/applications/graphics/openimageio/default.nix
Original file line number Diff line number Diff line change
@@ -3,7 +3,7 @@
}:

stdenv.mkDerivation rec {
name = "openimageio-${version}";
pname = "openimageio";
version = "1.8.16";

src = fetchFromGitHub {
@@ -15,28 +15,25 @@ stdenv.mkDerivation rec {

outputs = [ "bin" "out" "dev" "doc" ];

nativeBuildInputs = [ cmake ];
nativeBuildInputs = [ cmake unzip ];
buildInputs = [
boost ilmbase libjpeg libpng
libtiff opencolorio openexr
unzip
];

cmakeFlags = [
"-DUSE_PYTHON=OFF"
# GNUInstallDirs
"-DCMAKE_INSTALL_BINDIR=${placeholder "bin"}/bin"
];

preBuild = ''
makeFlags="ILMBASE_HOME=${ilmbase.dev} OPENEXR_HOME=${openexr.dev} USE_PYTHON=0
INSTALLDIR=$out dist_dir="
'';

postInstall = ''
mkdir -p $bin
mv $out/bin $bin/
'';

enableParallelBuilding = true;
makeFlags = [
"ILMBASE_HOME=${ilmbase.dev}"
"OPENEXR_HOME=${openexr.dev}"
"USE_PYTHON=0"
"INSTALLDIR=${placeholder "out"}"
"dist_dir="
];

meta = with stdenv.lib; {
homepage = http://www.openimageio.org;
26 changes: 26 additions & 0 deletions pkgs/development/libraries/robin-map/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{ stdenv
, fetchFromGitHub
, cmake
}:

stdenv.mkDerivation rec {
pname = "robin-map";
version = "0.6.1";

src = fetchFromGitHub {
owner = "Tessil";
repo = pname;
rev = "v${version}";
sha256 = "0blvvbr14f0drbd6dp0cs8x4ng3ppb5i72dmhk43ylg6yjgh4fhq";
};

nativeBuildInputs = [ cmake ];

meta = with stdenv.lib; {
homepage = https://github.com/Tessil/robin-map;
description = "C++ implementation of a fast hash map and hash set using robin hood hashing";
license = licenses.mit;
maintainers = with maintainers; [ goibhniu jtojnar ];
platforms = platforms.unix;
};
}
8 changes: 4 additions & 4 deletions pkgs/development/tools/skaffold/default.nix
Original file line number Diff line number Diff line change
@@ -2,9 +2,9 @@

buildGoPackage rec {
name = "skaffold-${version}";
version = "0.29.0";
# rev is the 0.29.0 commit, mainly for skaffold version command output
rev = "1bbf9a3f13094e58c90399a4bd7e07250e0d2da5";
version = "0.30.0";
# rev is the 0.30.0 commit, mainly for skaffold version command output
rev = "fe31429012110e6fd70f97971288bd266ba95bed";

goPackagePath = "github.com/GoogleContainerTools/skaffold";
subPackages = ["cmd/skaffold"];
@@ -20,7 +20,7 @@ buildGoPackage rec {
owner = "GoogleContainerTools";
repo = "skaffold";
rev = "v${version}";
sha256 = "1rf23f7cwmmsycwdyk09wsrsq20vbzg2pi44r3516qsaz7x98mf1";
sha256 = "1vh7vlz14gfjpxf2wy1pybw5x55mw34j6isyy5zl0rsbs9mf6ci1";
};

meta = {
Loading