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

Commits on Apr 3, 2020

  1. librecovery: fix build

    Needs libusb1
    worldofpeace committed Apr 3, 2020
    Copy the full SHA
    e2bb395 View commit details
  2. libfprint: fix build

    Needs libusb1 in 1.0
    worldofpeace committed Apr 3, 2020
    Copy the full SHA
    0dc69e8 View commit details
  3. Copy the full SHA
    7426a30 View commit details
10 changes: 9 additions & 1 deletion pkgs/desktops/deepin/deepin-terminal/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ stdenv, fetchFromGitHub, pkgconfig, cmake, ninja, vala_0_40,
{ stdenv, fetchFromGitHub, pkgconfig, cmake, ninja, vala_0_40, fetchpatch,
gettext, at-spi2-core, dbus, epoxy, expect, gtk3, json-glib,
libXdmcp, libgee, libpthreadstubs, librsvg, libsecret, libtasn1,
libxcb, libxkbcommon, p11-kit, pcre, vte, wnck, libselinux, gnutls, pcre2,
@@ -15,6 +15,14 @@ stdenv.mkDerivation rec {
sha256 = "1929saj828b438d07caw3cjhqq60v6gni7mi3fqrg9wdjz81xwv7";
};

patches = [
# Fix build with VTE 0.60
(fetchpatch {
url = "https://github.com/linuxdeepin/deepin-terminal/commit/542d1035b609698ee81aa7971d20ca8e5930743d.patch";
sha256 = "1pihiy70yc25fm5fx7i7v9gmi65v4mhldvi7xwv8rgr2z6hbfj41";
})
];

nativeBuildInputs = [
pkgconfig
cmake
4 changes: 2 additions & 2 deletions pkgs/development/libraries/libfprint/default.nix
Original file line number Diff line number Diff line change
@@ -5,7 +5,7 @@
, pkgconfig
, meson
, ninja
, libusb
, libusb1
, pixman
, glib
, nss
@@ -47,7 +47,7 @@ stdenv.mkDerivation rec {
];

buildInputs = [
libusb
libusb1 # drop in 2.0 for gusb
pixman
glib
nss
4 changes: 2 additions & 2 deletions pkgs/development/libraries/libirecovery/default.nix
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{ stdenv, fetchFromGitHub, automake, autoconf, libtool, pkgconfig
, libusb
, libusb1
, readline
}:

@@ -24,7 +24,7 @@ stdenv.mkDerivation rec {
];

buildInputs = [
libusb
libusb1
readline
];