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

Commits on Oct 22, 2019

  1. libevdev: pname

    dtzWill authored and FRidh committed Oct 22, 2019
    Copy the full SHA
    5b754c4 View commit details
  2. libevdev: 1.7.0 -> 1.8.0

    dtzWill authored and FRidh committed Oct 22, 2019
    Copy the full SHA
    34b3a31 View commit details
Showing with 4 additions and 3 deletions.
  1. +4 −3 pkgs/development/libraries/libevdev/default.nix
7 changes: 4 additions & 3 deletions pkgs/development/libraries/libevdev/default.nix
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
{ stdenv, fetchurl, python }:

stdenv.mkDerivation rec {
name = "libevdev-1.7.0";
pname = "libevdev";
version = "1.8.0";

src = fetchurl {
url = "https://www.freedesktop.org/software/libevdev/${name}.tar.xz";
sha256 = "0sg3lbjn68qaq3yz2k735h29kaf3fmx7b5m1x7rm2fnhn7rf3nqi";
url = "https://www.freedesktop.org/software/${pname}/${pname}-${version}.tar.xz";
sha256 = "04a2klvii0in9ln8r85mk2cm73jq8ry2m3yzmf2z8xyjxzjcmlr0";
};

buildInputs = [ python ];