Merge staging-next into staging

This commit is contained in:
Frederik Rietdijk
2018-12-19 09:00:36 +01:00
225 changed files with 2499 additions and 1202 deletions

View File

@@ -1,4 +1,4 @@
{ stdenv, fetchFromGitHub, pkgconfig, efivar, popt }:
{ stdenv, fetchFromGitHub, fetchpatch, pkgconfig, efivar, popt }:
stdenv.mkDerivation rec {
name = "efibootmgr-${version}";
@@ -15,6 +15,14 @@ stdenv.mkDerivation rec {
sha256 = "1niicijxg59rsmiw3rsjwy4bvi1n42dynvm01lnp9haixdzdpq03";
};
patches = [
(fetchpatch {
name = "remove-extra-decl.patch";
url = "https://github.com/rhboot/efibootmgr/commit/99b578501643377e0b1994b2a068b790d189d5ad.patch";
sha256 = "1sbijvlpv4khkix3vix9mbhzffj8lp8zpnbxm9gnzjz8yssz9p5h";
})
];
makeFlags = [ "EFIDIR=nixos" ];
installFlags = [ "prefix=$(out)" ];

View File

@@ -2,7 +2,7 @@
stdenv.mkDerivation rec {
name = "efivar-${version}";
version = "36";
version = "37";
outputs = [ "bin" "out" "dev" "man" ];
@@ -10,7 +10,7 @@ stdenv.mkDerivation rec {
owner = "rhinstaller";
repo = "efivar";
rev = version;
sha256 = "0r39kx6sqgpk8rz19g1sil4dp7r82d5g1wlkbw1czwas95s50y7n";
sha256 = "1z2dw5x74wgvqgd8jvibfff0qhwkc53kxg54v12pzymyibagwf09";
};
nativeBuildInputs = [ pkgconfig ];

View File

@@ -2,7 +2,7 @@
buildGoPackage rec {
name = "gotop-${version}";
version = "1.5.0";
version = "1.7.1";
goPackagePath = "github.com/cjbassi/gotop";
@@ -10,9 +10,11 @@ buildGoPackage rec {
repo = "gotop";
owner = "cjbassi";
rev = version;
sha256 = "19kj7mziwkfcf9kkwph05jh5vlkfqpyrpxdk5gdf2swg07w1ld35";
sha256 = "0dxnhal10kv6ypsg6mildzpz6vi1iw996q47f4rv8hvfyrffhzc9";
};
goDeps = ./deps.nix;
meta = with stdenv.lib; {
description = "A terminal based graphical activity monitor inspired by gtop and vtop";
homepage = https://github.com/cjbassi/gotop;

39
pkgs/tools/system/gotop/deps.nix generated Normal file
View File

@@ -0,0 +1,39 @@
# This file was generated by https://github.com/kamilchm/go2nix v1.3.0
[
{
goPackagePath = "github.com/cjbassi/termui";
fetch = {
type = "git";
url = "https://github.com/cjbassi/termui";
rev = "e8dd23f6146c0e0d80f1be0163b8069abfbb921b";
sha256 = "0jds2mpa7whrwaznlkcn2y92q41zbf2rjj5267kl8zqllbia8cbx";
};
}
{
goPackagePath = "github.com/docopt/docopt-go";
fetch = {
type = "git";
url = "https://github.com/docopt/docopt-go";
rev = "ee0de3bc6815ee19d4a46c7eb90f829db0e014b1";
sha256 = "0hlra7rmi5pmd7d93rv56ahiy4qkgmq8a6mz0jpadvbi5qh8lq6j";
};
}
{
goPackagePath = "github.com/shirou/gopsutil";
fetch = {
type = "git";
url = "https://github.com/shirou/gopsutil";
rev = "51e6519305e4871657c291a6281fcddc6364bbef";
sha256 = "1pvvaj51m0w2v6bp5hhhzfy27hbicf4ga7r9m073vqcwjnfyz431";
};
}
{
goPackagePath = "golang.org/x/sys";
fetch = {
type = "git";
url = "https://go.googlesource.com/sys";
rev = "9b800f95dbbc54abff0acf7ee32d88ba4e328c89";
sha256 = "07v3l7q7y59cwvw0mc85i39v7qjcc1jh4svwi789rmrqqm5nq7q6";
};
}
]

View File

@@ -4,13 +4,13 @@
stdenv.mkDerivation rec {
name = "logrotate-${version}";
version = "3.14.0";
version = "3.15.0";
src = fetchFromGitHub {
owner = "logrotate";
repo = "logrotate";
rev = version;
sha256 = "1wdjqbly97y1i11nl6cmlfpld3yqak270ixf29wixjgrjn8p4xzh";
sha256 = "094wv4d3gv5dmw55d0xij06lgcg5q9bmq49hipc2jhp4vdsj4xr5";
};
# Logrotate wants to access the 'mail' program; to be done.