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

Commits on Jul 27, 2020

  1. Copy the full SHA
    c83e133 View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/tools/misc/wlr-randr/default.nix
6 changes: 3 additions & 3 deletions pkgs/tools/misc/wlr-randr/default.nix
Original file line number Diff line number Diff line change
@@ -2,13 +2,13 @@

stdenv.mkDerivation rec {
pname = "wlr-randr";
version = "unstable-2019-03-21";
version = "0.1.0";

src = fetchFromGitHub {
owner = "emersion";
repo = pname;
rev = "c4066aa3249963dc7877119cffce10f3fa8b6304";
sha256 = "1ahw4sv07xg5rh9vr7j28636iaxs06vnybm3li6y8dz2sky7hk88";
rev = "v${version}";
sha256 = "10c8zzp78s5bw34vvjhilipa28bsdx3jbyhnxgp8f8kawh3cvgsc";
};

nativeBuildInputs = [ meson ninja cmake pkgconfig ];