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

Commits on Jan 16, 2020

  1. Copy the full SHA
    57d90bd View commit details
  2. Copy the full SHA
    14dd35e View commit details
  3. Copy the full SHA
    f8eb39b View commit details

Commits on Jan 17, 2020

  1. Merge pull request #77923 from Synthetica9/version-formats

    various: fix version formatting
    worldofpeace authored Jan 17, 2020
    Copy the full SHA
    d165c28 View commit details
Showing with 4 additions and 5 deletions.
  1. +1 −1 pkgs/development/libraries/libevdevplus/default.nix
  2. +1 −1 pkgs/tools/X11/xcape/default.nix
  3. +2 −3 pkgs/tools/misc/mcfly/default.nix
2 changes: 1 addition & 1 deletion pkgs/development/libraries/libevdevplus/default.nix
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@

stdenv.mkDerivation rec {
pname = "libevdevplus";
version = "2019-10-01";
version = "unstable-2019-10-01";

src = fetchFromGitHub {
owner = "YukiWorkshop";
2 changes: 1 addition & 1 deletion pkgs/tools/X11/xcape/default.nix
Original file line number Diff line number Diff line change
@@ -3,7 +3,7 @@ libXi }:

stdenv.mkDerivation rec {
pname = "xcape";
version = "unstable-20180301";
version = "unstable-2018-03-01";

src = fetchFromGitHub {
owner = "alols";
5 changes: 2 additions & 3 deletions pkgs/tools/misc/mcfly/default.nix
Original file line number Diff line number Diff line change
@@ -2,13 +2,12 @@

rustPlatform.buildRustPackage rec {
pname = "mcfly";
version = "v0.3.1";
rev = version;
version = "0.3.1";

src = fetchFromGitHub {
inherit rev;
owner = "cantino";
repo = "mcfly";
rev = "v${version}";
sha256 = "0pmyw21zns4zn7pffji4yvbj63fx3g15cx81pk4bs6lzyz5zbdc2";
};