lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge branch 'master' into staging

+59 -34
+2 -2
pkgs/applications/editors/vim/common.nix
··· 1 1 { lib, fetchFromGitHub }: 2 2 rec { 3 - version = "8.0.1257"; 3 + version = "8.0.1428"; 4 4 5 5 src = fetchFromGitHub { 6 6 owner = "vim"; 7 7 repo = "vim"; 8 8 rev = "v${version}"; 9 - sha256 = "1y4c7wn5gr7n4c2ni36kadr26aldydxlf06yj7nsmw22ywwg78ig"; 9 + sha256 = "0pqqh7g96w8jfc5kvv2il6fcbhccwhk4k5skk52g1c1ixsblwz3y"; 10 10 }; 11 11 12 12 enableParallelBuilding = true;
+1
pkgs/applications/editors/vim/default.nix
··· 29 29 "vim_cv_toupper_broken=no" 30 30 "--with-tlib=ncurses" 31 31 "vim_cv_terminfo=yes" 32 + "vim_cv_tgetent=zero" # it does on native anyway 32 33 "vim_cv_tty_group=tty" 33 34 "vim_cv_tty_mode=0660" 34 35 "vim_cv_getcwd_broken=no"
+1 -1
pkgs/applications/office/libreoffice/default.nix
··· 13 13 , librevenge, libe-book, libmwaw, glm, glew, gst_all_1 14 14 , gdb, commonsLogging, librdf_rasqal, wrapGAppsHook 15 15 , defaultIconTheme, glib, ncurses, xmlsec, epoxy, gpgme 16 - , langs ? [ "en-US" "en-GB" "ca" "ru" "eo" "fr" "nl" "de" "sl" "pl" "hu" "it" ] 16 + , langs ? [ "ca" "de" "en-GB" "en-US" "eo" "es" "fr" "hu" "it" "nl" "pl" "ru" "sl" ] 17 17 , withHelp ? true 18 18 , kdeIntegration ? false 19 19 }:
+1 -1
pkgs/applications/office/libreoffice/still.nix
··· 13 13 , librevenge, libe-book, libmwaw, glm, glew, gst_all_1 14 14 , gdb, commonsLogging, librdf_rasqal, wrapGAppsHook 15 15 , defaultIconTheme, glib, ncurses 16 - , langs ? [ "en-US" "en-GB" "ca" "ru" "eo" "fr" "nl" "de" "sl" "pl" "hu" "it" ] 16 + , langs ? [ "ca" "de" "en-GB" "en-US" "eo" "es" "fr" "hu" "it" "nl" "pl" "ru" "sl" ] 17 17 , withHelp ? true 18 18 }: 19 19
+2 -2
pkgs/applications/science/biology/bowtie2/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "bowtie2"; 5 - version = "2.3.3.1"; 5 + version = "2.3.4"; 6 6 name = "${pname}-${version}"; 7 7 8 8 src = fetchFromGitHub { 9 9 owner = "BenLangmead"; 10 10 repo = pname; 11 11 rev = "v${version}"; 12 - sha256 = "1pcyks76bnnkq6h0gqjw4fkdddjjnw7k5ibim7ajkbvfw58a99y0"; 12 + sha256 = "15k86ln1xgqkyk8ms09cgdhagz49jpvr6ij6mha1f9ga5fxnnp1m"; 13 13 }; 14 14 15 15 buildInputs = [ zlib tbb ];
+2 -2
pkgs/applications/science/biology/picard-tools/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "picard-tools-${version}"; 5 - version = "2.7.1"; 5 + version = "2.17.4"; 6 6 7 7 src = fetchurl { 8 8 url = "https://github.com/broadinstitute/picard/releases/download/${version}/picard.jar"; 9 - sha256 = "0rcfcvy9zacqmh7nyqlm93hzsx6gfygmcf8d2p02h5l69gvygnb9"; 9 + sha256 = "00ffi8kkrlh72vjjkjpgi8zys3r9hkdk4xi82kcahch8pix4qzf2"; 10 10 }; 11 11 12 12 buildInputs = [ jre makeWrapper ];
+1 -1
pkgs/development/compilers/julia/git.nix
··· 175 175 license = stdenv.lib.licenses.mit; 176 176 maintainers = with stdenv.lib.maintainers; [ raskin ]; 177 177 platforms = [ "i686-linux" "x86_64-linux" "x86_64-darwin" ]; 178 - broken = stdenv.isi686; 178 + broken = true; # since 2017-04-08. 179 179 }; 180 180 }
-13
pkgs/development/python-modules/cffi/clang.patch
··· 1 - diff --git a/testing/cffi1/test_recompiler.py b/testing/cffi1/test_recompiler.py 2 - index a3277b0..0d6e2c3 100644 3 - --- a/testing/cffi1/test_recompiler.py 4 - +++ b/testing/cffi1/test_recompiler.py 5 - @@ -2270,7 +2270,7 @@ def test_char16_char32_type(no_cpp=False): 6 - char32_t foo_4bytes(char32_t); 7 - """) 8 - lib = verify(ffi, "test_char16_char32_type" + no_cpp * "_nocpp", """ 9 - - #if !defined(__cplusplus) || __cplusplus < 201103L 10 - + #if !defined(__cplusplus) 11 - typedef uint_least16_t char16_t; 12 - typedef uint_least32_t char32_t; 13 - #endif
+1 -3
pkgs/development/python-modules/cffi/default.nix
··· 10 10 sha256 = "df9083a992b17a28cd4251a3f5c879e0198bb26c9e808c4647e0a18739f1d11d"; 11 11 }; 12 12 13 - patches = stdenv.lib.optional (isPy27 && stdenv.cc.isClang) ./clang.patch; 14 - 15 13 outputs = [ "out" "dev" ]; 16 14 17 15 propagatedBuildInputs = [ libffi pycparser ]; ··· 39 37 ''; 40 38 41 39 meta = with stdenv.lib; { 42 - maintainers = with maintainers; [ domenkozar ]; 40 + maintainers = with maintainers; [ domenkozar lnl7 ]; 43 41 homepage = https://cffi.readthedocs.org/; 44 42 license = with licenses; [ mit ]; 45 43 description = "Foreign Function Interface for Python calling C code";
+2 -2
pkgs/development/tools/deis/default.nix
··· 2 2 3 3 buildGoPackage rec { 4 4 name = "deis-${version}"; 5 - version = "1.13.3"; 5 + version = "1.13.4"; 6 6 rev = "v${version}"; 7 7 8 8 goPackagePath = "github.com/deis/deis"; ··· 18 18 inherit rev; 19 19 owner = "deis"; 20 20 repo = "deis"; 21 - sha256 = "15q44jyjms8fdmly0z4sn4ymf1dx6cmdavgixjixdj2wbjw0yi2p"; 21 + sha256 = "0hndzvlgpfm83c4i1c88byv8j9clagswa79nny8wrw33dx90dym1"; 22 22 }; 23 23 24 24 preBuild = ''
+2 -2
pkgs/os-specific/linux/irqbalance/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "irqbalance-${version}"; 5 - version = "1.2.0"; 5 + version = "1.3.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "irqbalance"; 9 9 repo = "irqbalance"; 10 10 rev = "v${version}"; 11 - sha256 = "1xznxjbjzg6sds3fymdq9rk3g4cgq7xj7rz3dwbqqjqvd3k2nxw6"; 11 + sha256 = "009777p5v72x4r58skqgaf03qv3app9b8lkxkpxq0226l0x3j4qh"; 12 12 }; 13 13 14 14 nativeBuildInputs = [ autoreconfHook pkgconfig ];
+5 -5
pkgs/tools/misc/scanmem/default.nix
··· 1 1 { stdenv, autoconf, automake, intltool, libtool, fetchFromGitHub, readline }: 2 2 3 3 stdenv.mkDerivation rec { 4 - version = "0.16"; 4 + version = "0.17"; 5 5 name = "scanmem-${version}"; 6 - 6 + 7 7 src = fetchFromGitHub { 8 8 owner = "scanmem"; 9 9 repo = "scanmem"; 10 10 rev = "v${version}"; 11 - sha256 = "131rx6cpnlz2x36r0ry80gqapmxpz2qc3h0040xhvp7ydmd4fyjd"; 11 + sha256 = "17p8sh0rj8yqz36ria5bp48c8523zzw3y9g8sbm2jwq7sc27i7s9"; 12 12 }; 13 13 14 14 nativeBuildInputs = [ autoconf automake intltool libtool ]; 15 15 buildInputs = [ readline ]; 16 - 16 + 17 17 preConfigure = '' 18 18 ./autogen.sh 19 19 ''; 20 20 meta = with stdenv.lib; { 21 21 homepage = https://github.com/scanmem/scanmem; 22 22 description = "Memory scanner for finding and poking addresses in executing processes"; 23 - maintainers = [ maintainers.chattered ]; 23 + maintainers = [ maintainers.chattered ]; 24 24 platforms = platforms.linux; 25 25 license = licenses.gpl3; 26 26 };
+25
pkgs/tools/misc/xmonad-log/default.nix
··· 1 + { stdenv, buildGoPackage, fetchFromGitHub }: 2 + 3 + buildGoPackage rec { 4 + name = "xmonad-log-${version}"; 5 + version = "0.1.0"; 6 + 7 + goPackagePath = "github.com/xintron/xmonad-log"; 8 + 9 + src = fetchFromGitHub { 10 + owner = "xintron"; 11 + repo = "xmonad-log"; 12 + rev = version; 13 + sha256 = "1il6v0zcjw0pfb1hjj198y94jmlcx255h422ph0f1zr7afqkzmaw"; 14 + }; 15 + 16 + goDeps = ./deps.nix; 17 + 18 + meta = with stdenv.lib; { 19 + description = "xmonad DBus monitoring solution"; 20 + homepage = https://github.com/xintron/xmonad-log; 21 + license = licenses.mit; 22 + platforms = platforms.linux; 23 + maintainers = with maintainers; [ joko ]; 24 + }; 25 + }
+12
pkgs/tools/misc/xmonad-log/deps.nix
··· 1 + # This file was generated by https://github.com/kamilchm/go2nix v1.2.1 2 + [ 3 + { 4 + goPackagePath = "github.com/godbus/dbus"; 5 + fetch = { 6 + type = "git"; 7 + url = "https://github.com/godbus/dbus"; 8 + rev = "a389bdde4dd695d414e47b755e95e72b7826432c"; 9 + sha256 = "1ckvg15zdsgmbn4mi36cazkb407ixc9mmyf7vwj8b8wi3d00rgn9"; 10 + }; 11 + } 12 + ]
+2
pkgs/top-level/all-packages.nix
··· 17928 17928 17929 17929 xkblayout-state = callPackage ../applications/misc/xkblayout-state { }; 17930 17930 17931 + xmonad-log = callPackage ../tools/misc/xmonad-log { }; 17932 + 17931 17933 xmonad-with-packages = callPackage ../applications/window-managers/xmonad/wrapper.nix { 17932 17934 inherit (haskellPackages) ghcWithPackages; 17933 17935 packages = self: [];