Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/master' into HEAD
Browse files Browse the repository at this point in the history
  • Loading branch information
FRidh committed Feb 3, 2018
2 parents e2a0965 + cff5eec commit fac78c8
Show file tree
Hide file tree
Showing 42 changed files with 2,006 additions and 228 deletions.
1 change: 1 addition & 0 deletions lib/maintainers.nix
Expand Up @@ -564,6 +564,7 @@
rasendubi = "Alexey Shmalko <rasen.dubi@gmail.com>";
raskin = "Michael Raskin <7c6f434c@mail.ru>";
ravloony = "Tom Macdonald <ravloony@gmail.com>";
razvan = "Răzvan Flavius Panda <razvan.panda@gmail.com>";
rbasso = "Rafael Basso <rbasso@sharpgeeks.net>";
redbaron = "Maxim Ivanov <ivanov.maxim@gmail.com>";
redvers = "Redvers Davies <red@infect.me>";
Expand Down
2 changes: 1 addition & 1 deletion nixos/modules/services/misc/home-assistant.nix
Expand Up @@ -70,7 +70,7 @@ in {
default = true;
type = types.bool;
description = ''
If set to <literal>true</literal>, the components used in <literal>config</config>
If set to <literal>true</literal>, the components used in <literal>config</literal>
are set as the specified package's <literal>extraComponents</literal>.
This in turn adds all packaged dependencies to the derivation.
You might still see import errors in your log.
Expand Down
3 changes: 2 additions & 1 deletion nixos/modules/system/boot/kernel.nix
Expand Up @@ -206,7 +206,8 @@ in
"xhci_hcd"
"xhci_pci"
"usbhid"
"hid_generic" "hid_lenovo" "hid_apple" "hid_roccat" "hid_logitech_hidpp"
"hid_generic" "hid_lenovo" "hid_apple" "hid_roccat"
"hid_logitech_hidpp" "hid_logitech_dj"

] ++ optionals (pkgs.stdenv.isi686 || pkgs.stdenv.isx86_64) [
# Misc. x86 keyboard stuff.
Expand Down
5 changes: 3 additions & 2 deletions pkgs/applications/editors/tiled/default.nix
Expand Up @@ -3,13 +3,13 @@

stdenv.mkDerivation rec {
name = "tiled-${version}";
version = "1.1.1";
version = "1.1.2";

src = fetchFromGitHub {
owner = "bjorn";
repo = "tiled";
rev = "v${version}";
sha256 = "1c6n5xshadxv5qwv8kfrj1kbfnkvx6nyxc9p4mpzkjrkxw1b1qf1";
sha256 = "1bzp89914rlrwf2whky3fx10rwxqiwbw9acyqllvam3l4hmv4nlz";
};

nativeBuildInputs = [ pkgconfig qmake ];
Expand All @@ -24,6 +24,7 @@ stdenv.mkDerivation rec {
bsd2 # libtiled and tmxviewer
gpl2Plus # all the rest
];
maintainers = with maintainers; [ dywedir ];
platforms = platforms.linux;
};
}
4 changes: 2 additions & 2 deletions pkgs/applications/misc/kitty/default.nix
Expand Up @@ -2,15 +2,15 @@

with python3Packages;
buildPythonApplication rec {
version = "0.6.0";
version = "0.7.1";
name = "kitty-${version}";
format = "other";

src = fetchFromGitHub {
owner = "kovidgoyal";
repo = "kitty";
rev = "v${version}";
sha256 = "1p86gry91m4kicy79fc1qfr0hcsd5xnvxzmm4q956x883h6h766r";
sha256 = "0c02xy5psb7v7xfncz4bflrbinifpcm1yn8hvh0zaf7p4vr837p7";
};

buildInputs = [ fontconfig glfw ncurses libunistring harfbuzz libX11 libXrandr libXinerama libXcursor libxkbcommon libXi libXext ];
Expand Down
10 changes: 8 additions & 2 deletions pkgs/build-support/rust/build-rust-crate.nix
Expand Up @@ -297,9 +297,15 @@ in
crate_: lib.makeOverridable ({ rust, release, verbose, features, buildInputs, crateOverrides }:

let crate = crate_ // (lib.attrByPath [ crate_.crateName ] (attr: {}) crateOverrides crate_);
processedAttrs = [
"src" "buildInputs" "crateBin" "crateLib" "libName" "libPath"
"buildDependencies" "dependencies" "features"
"crateName" "version" "build" "authors" "colors"
];
extraDerivationAttrs = lib.filterAttrs (n: v: ! lib.elem n processedAttrs) crate;
buildInputs_ = buildInputs;
in
stdenv.mkDerivation rec {
stdenv.mkDerivation (rec {

inherit (crate) crateName;

Expand Down Expand Up @@ -372,7 +378,7 @@ stdenv.mkDerivation rec {
};
installPhase = installCrate crateName;

}) {
} // extraDerivationAttrs)) {
rust = rustc;
release = true;
verbose = true;
Expand Down
34 changes: 0 additions & 34 deletions pkgs/build-support/rust/cargo-vendor.nix

This file was deleted.

0 comments on commit fac78c8

Please sign in to comment.