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: fb5f43a486f4
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 7cacb64c7515
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Sep 19, 2019

  1. libratbag: 0.9.905 -> 0.10

    mweinelt committed Sep 19, 2019

    Verified

    This commit was signed with the committer’s verified signature.
    cdepillabout Dennis Gosnell
    Copy the full SHA
    d0f19f9 View commit details

Commits on Sep 24, 2019

  1. Merge pull request #69119 from mweinelt/pr/libratbag/0.10

    libratbag: 0.9.905 -> 0.10
    Mic92 authored Sep 24, 2019

    Verified

    This commit was signed with the committer’s verified signature.
    cdepillabout Dennis Gosnell
    Copy the full SHA
    7cacb64 View commit details
Showing with 5 additions and 4 deletions.
  1. +5 −4 pkgs/os-specific/linux/libratbag/default.nix
9 changes: 5 additions & 4 deletions pkgs/os-specific/linux/libratbag/default.nix
Original file line number Diff line number Diff line change
@@ -1,23 +1,24 @@
{ stdenv, fetchFromGitHub, meson, ninja, pkgconfig
, glib, systemd, udev, libevdev, gitMinimal, check, valgrind, swig, python3 }:
, glib, systemd, udev, libevdev, gitMinimal, check, valgrind, swig, python3
, json-glib, libunistring }:

stdenv.mkDerivation rec {
pname = "libratbag";
version = "0.9.905";
version = "0.10";

src = fetchFromGitHub {
owner = "libratbag";
repo = "libratbag";
rev = "v${version}";
sha256 = "0bh1nf9sv7wka0vh5bz9krf2cfxz0rr64hrpdm7imsb6cn39k01y";
sha256 = "10hahpv2n48b5z35d2draka7cz1a9vw53rvwfmpp5dibwnmi81jb";
};

nativeBuildInputs = [
meson ninja pkgconfig gitMinimal swig check valgrind
];

buildInputs = [
glib systemd udev libevdev
glib systemd udev libevdev json-glib libunistring
(python3.withPackages (ps: with ps; [ evdev pygobject3 ]))
];