Merge staging-next into staging

This commit is contained in:
github-actions[bot]
2021-02-05 06:16:34 +00:00
committed by GitHub
9 changed files with 75 additions and 35 deletions

View File

@@ -2,16 +2,16 @@
buildGoModule rec {
pname = "eksctl";
version = "0.36.2";
version = "0.37.0";
src = fetchFromGitHub {
owner = "weaveworks";
repo = pname;
rev = version;
sha256 = "sha256-qAUJgQzC9dGeVePsLpZHt+Ogz5ty5+N8hKBtGozhRZM=";
sha256 = "sha256-1IhCBDMfGW9hDvQoGSJKJ1ZlShzVeIGjVOfiUspHRBw=";
};
vendorSha256 = "sha256-woEa/h6TKQD32BslmPBuILvBAObhWjT8XqnQmuweUx0=";
vendorSha256 = "sha256-fa8IrJhsy5cBzBs4tGIx7ykJcXjdvLqms3Dk97P4Vik=";
doCheck = false;

View File

@@ -1,9 +1,11 @@
{ lib, stdenv, fetchFromGitHub }:
{ lib
, stdenv
, fetchFromGitHub
}:
with lib;
stdenv.mkDerivation {
pname = "cue2pops";
version = "git-2018-01-04";
version = "unstable-2018-01-04";
src = fetchFromGitHub {
owner = "makefu";
@@ -14,14 +16,14 @@ stdenv.mkDerivation {
dontConfigure = true;
makeFlags = ["CC=cc"];
makeFlags = [ "CC=cc" ];
installPhase = ''
install --directory --mode=755 $out/bin
install --mode=755 cue2pops $out/bin
'';
meta = {
meta = with lib; {
description = "Convert CUE to ISO suitable to POPStarter";
homepage = "https://github.com/makefu/cue2pops-linux";
maintainers = with maintainers; [ AndersonTorres ];

View File

@@ -3,7 +3,7 @@
let jdk = jdk8; jre = jre8; in
stdenv.mkDerivation rec {
pname = "ili2c";
version = "5.0.8";
version = "5.1.1";
nativeBuildInputs = [ ant jdk makeWrapper ];
@@ -11,7 +11,7 @@ stdenv.mkDerivation rec {
owner = "claeis";
repo = pname;
rev = "${pname}-${version}";
sha256 = "1yhsyh940kb33y2n6xl7zhf0f6q0nrxbyg6c4g5n2imllpn54sgi";
sha256 = "sha256-FHhx+f253+UdbFjd2fOlUY1tpQ6pA2aVu9CBSwUVoKQ=";
};
buildPhase = "ant jar";