Skip to content
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
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: a88ec5e8a5c0
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: f744f83072b2
Choose a head ref
  • 8 commits
  • 12 files changed
  • 1 contributor

Commits on Mar 22, 2018

  1. Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    globin Robin Gloster
    Copy the full SHA
    1497815 View commit details
  2. Partially verified

    This commit is signed with the committer’s verified signature. The key has expired.
    globin’s contribution has been verified via GPG key.
    We cannot verify signatures from co-authors, and some of the co-authors attributed to this commit require their commits to be signed.
    Copy the full SHA
    5050d05 View commit details
  3. Partially verified

    This commit is signed with the committer’s verified signature. The key has expired.
    globin’s contribution has been verified via GPG key.
    We cannot verify signatures from co-authors, and some of the co-authors attributed to this commit require their commits to be signed.
    Copy the full SHA
    9152ef9 View commit details
  4. matterircd: 0.12.0 -> 0.16.5

    fpletz committed Mar 22, 2018

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    globin Robin Gloster
    Copy the full SHA
    7dee8ab View commit details
  5. squid4: 4.0.23 -> 4.0.24

    fpletz committed Mar 22, 2018

    Partially verified

    This commit is signed with the committer’s verified signature. The key has expired.
    globin’s contribution has been verified via GPG key.
    We cannot verify signatures from co-authors, and some of the co-authors attributed to this commit require their commits to be signed.
    Copy the full SHA
    1e15d08 View commit details
  6. nmap: 7.60 -> 7.70

    fpletz committed Mar 22, 2018

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    globin Robin Gloster
    Copy the full SHA
    f2fea90 View commit details
  7. Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    globin Robin Gloster
    Copy the full SHA
    ab5f98a View commit details
  8. zfs, spl: 0.7.6 -> 0.7.7

    Remove spl patch that was introduced for grsecurity which we don't support
    anymore. ZFS now needs perl for some scripts that are call in the configure
    script.
    fpletz committed Mar 22, 2018
    3

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    globin Robin Gloster
    Copy the full SHA
    f744f83 View commit details
2 changes: 2 additions & 0 deletions pkgs/applications/altcoins/default.nix
Original file line number Diff line number Diff line change
@@ -46,6 +46,8 @@ rec {
litecoin = callPackage ./litecoin.nix { withGui = true; };
litecoind = callPackage ./litecoin.nix { withGui = false; };

masari = callPackage ./masari.nix { };

memorycoin = callPackage ./memorycoin.nix { boost = boost165; withGui = true; };
memorycoind = callPackage ./memorycoin.nix { boost = boost165; withGui = false; };

27 changes: 27 additions & 0 deletions pkgs/applications/altcoins/masari.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{ lib, stdenv, fetchFromGitHub, cmake, pkgconfig, unbound, openssl, boost
, lmdb, miniupnpc, readline }:

stdenv.mkDerivation rec {
name = "masari-${version}";
version = "0.1.4.0";

src = fetchFromGitHub {
owner = "masari-project";
repo = "masari";
rev = "v${version}";
sha256 = "0l6i21wkq5f6z8xr756i7vqgkzk7lixaa31ydy34fkfcqxppgxz3";
};

nativeBuildInputs = [ cmake pkgconfig ];
buildInputs = [ boost miniupnpc openssl lmdb unbound readline ];

enableParallelBuilding = true;

meta = with lib; {
description = "scalability-focused, untraceable, secure, and fungible cryptocurrency using the RingCT protocol";
homepage = "https://www.getmasari.org/";
license = licenses.bsd3;
maintainers = with maintainers; [ fpletz ];
platforms = platforms.linux;
};
}
13 changes: 0 additions & 13 deletions pkgs/os-specific/linux/spl/const.patch

This file was deleted.

6 changes: 3 additions & 3 deletions pkgs/os-specific/linux/spl/default.nix
Original file line number Diff line number Diff line change
@@ -20,7 +20,7 @@ let
inherit rev sha256;
};

patches = [ ./const.patch ./install_prefix.patch ];
patches = [ ./install_prefix.patch ];

nativeBuildInputs = [ autoreconfHook ] ++ kernel.moduleBuildDependencies;

@@ -61,8 +61,8 @@ in
assert kernel != null;
{
splStable = common {
version = "0.7.6";
sha256 = "1l641d89k48ngmarx9mxh8gw2zzrf7fw7n8zmslhz4h1152plddb";
version = "0.7.7";
sha256 = "0mq7827x4173wdbpj361gvxvk8j9r96363gka75smzsc31i2wa5x";
};

splUnstable = common {
13 changes: 9 additions & 4 deletions pkgs/os-specific/linux/zfs/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{ stdenv, fetchFromGitHub, autoreconfHook, utillinux, nukeReferences, coreutils, fetchpatch
{ stdenv, fetchFromGitHub, autoreconfHook, utillinux, nukeReferences, coreutils
, perl, fetchpatch
, configFile ? "all"

# Userspace dependencies
@@ -39,8 +40,12 @@ let

patches = extraPatches;

postPatch = optionalString buildKernel ''
patchShebangs scripts
'';

nativeBuildInputs = [ autoreconfHook nukeReferences ]
++ optional buildKernel kernel.moduleBuildDependencies;
++ optional buildKernel (kernel.moduleBuildDependencies ++ [ perl ]);
buildInputs =
optionals buildKernel [ spl ]
++ optionals buildUser [ zlib libuuid python attr ]
@@ -142,9 +147,9 @@ in {
incompatibleKernelVersion = null;

# this package should point to the latest release.
version = "0.7.6";
version = "0.7.7";

sha256 = "1k3a69zfdk4ia4z2l69lbz0mj26bwdanxd2wynkdpm2kl3zjj18h";
sha256 = "0lrzy27sh1cinkf04ki2vfjrgpgbiza2s59i2by45qdd8kmkcc5r";

extraPatches = [
(fetchpatch {
6 changes: 3 additions & 3 deletions pkgs/servers/mattermost/matterircd.nix
Original file line number Diff line number Diff line change
@@ -2,16 +2,16 @@

buildGoPackage rec {
name = "matterircd-${version}";
version = "0.12.0";
version = "0.16.5";

src = fetchFromGitHub {
owner = "42wim";
repo = "matterircd";
rev = "v${version}";
sha256 = "1fgpfyb78l1kl0kja2fjqc4ik1q869cmhx6xdmp9ff2qcqk22cj0";
sha256 = "1rsmc2dpf25rkl8c085xwssbry3hv1gv318m7rdj616agx4m7yr2";
};

goPackagePath = "github.com/42vim/matterircd";
goPackagePath = "github.com/42wim/matterircd";

meta = with stdenv.lib; {
inherit (src.meta) homepage;
4 changes: 2 additions & 2 deletions pkgs/servers/monitoring/prometheus/blackbox-exporter.nix
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@

buildGoPackage rec {
name = "blackbox_exporter-${version}";
version = "0.11.0";
version = "0.12.0";
rev = version;

goPackagePath = "github.com/prometheus/blackbox_exporter";
@@ -11,7 +11,7 @@ buildGoPackage rec {
rev = "v${version}";
owner = "prometheus";
repo = "blackbox_exporter";
sha256 = "1zwhyvjkf222bwvgim28yizk2vq0777dviqfkkc3vdhiwl9amr8v";
sha256 = "0gd3vymk3qdfjnf0rx9kwc6v0jv7f8l30igvj2v7bljar2d6hzxf";
};

meta = with stdenv.lib; {
4 changes: 2 additions & 2 deletions pkgs/servers/monitoring/prometheus/node-exporter.nix
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@

buildGoPackage rec {
name = "node_exporter-${version}";
version = "0.15.0";
version = "0.15.2";
rev = "v${version}";

goPackagePath = "github.com/prometheus/node_exporter";
@@ -11,7 +11,7 @@ buildGoPackage rec {
inherit rev;
owner = "prometheus";
repo = "node_exporter";
sha256 = "0v1m6m9fmlw66s9v50y2rfr5kbpb9mxbwpcab4cmgcjs1y7wcn49";
sha256 = "1vxbkps80ba8c0ndawijg07am5gyc8y49h8fd0ky5h05zmkp25qv";
};

# FIXME: megacli test fails
4 changes: 2 additions & 2 deletions pkgs/servers/squid/4.nix
Original file line number Diff line number Diff line change
@@ -2,11 +2,11 @@
, expat, libxml2, openssl }:

stdenv.mkDerivation rec {
name = "squid-4.0.23";
name = "squid-4.0.24";

src = fetchurl {
url = "http://www.squid-cache.org/Versions/v4/${name}.tar.xz";
sha256 = "0a8g0zs3xayfkxl8maq823b14lckvh9d5lf7ryh9rx303xh1mdqq";
sha256 = "01vayx86sakfy9zz2q5cvzv97865l1zb0jkqbh7wqz9hcgbs0789";
};

buildInputs = [
6 changes: 2 additions & 4 deletions pkgs/tools/security/clamav/default.nix
Original file line number Diff line number Diff line change
@@ -4,11 +4,11 @@

stdenv.mkDerivation rec {
name = "clamav-${version}";
version = "0.99.3";
version = "0.99.4";

src = fetchurl {
url = "https://www.clamav.net/downloads/production/${name}.tar.gz";
sha256 = "114f7qk3h0klgm0zzn2394n5spcn91vjc9mq6m03l2p0ls955yh0";
sha256 = "0q94iwi729id9pyc72w6zlllbaz37qvpi6gc51g2x3fy7ckw6anp";
};

# don't install sample config files into the absolute sysconfdir folder
@@ -21,8 +21,6 @@ stdenv.mkDerivation rec {
zlib bzip2 libxml2 openssl ncurses curl libiconv libmilter pcre
];

patches = [ ./fd-leak.patch ];

configureFlags = [
"--sysconfdir=/etc/clamav"
"--disable-llvm" # enabling breaks the build at the moment
49 changes: 0 additions & 49 deletions pkgs/tools/security/clamav/fd-leak.patch

This file was deleted.

4 changes: 2 additions & 2 deletions pkgs/tools/security/nmap/default.nix
Original file line number Diff line number Diff line change
@@ -19,11 +19,11 @@ let

in stdenv.mkDerivation rec {
name = "nmap${optionalString graphicalSupport "-graphical"}-${version}";
version = "7.60";
version = "7.70";

src = fetchurl {
url = "https://nmap.org/dist/nmap-${version}.tar.bz2";
sha256 = "08bga42ipymmbxd7wy4x5sl26c0ir1fm3n9rc6nqmhx69z66wyd8";
sha256 = "063fg8adx23l4irrh5kn57hsmi1xvjkar4vm4k6g94ppan4hcyw4";
};

patches = ./zenmap.patch;