autorandr: 4f5e2401ef -> 20150127

wertarbyte has allowed his project to languish, and phillipberdt
has taken it over and is merging pull requests
This commit is contained in:
Graham Christensen 2016-06-21 20:18:43 -05:00 committed by Robert Helgesson
parent 977e0c6599
commit 7bd2052436

View File

@ -1,22 +1,26 @@
{ fetchgit { fetchgit
, stdenv , stdenv
, enableXRandr ? true, xrandr ? null , enableXRandr ? true, xrandr ? null
, enableDisper ? false, disper ? null , enableDisper ? true, disper ? null
, xdpyinfo }: , xdpyinfo }:
assert enableXRandr -> xrandr != null; assert enableXRandr -> xrandr != null;
assert enableDisper -> disper != null; assert enableDisper -> disper != null;
let let
rev = "4f5e2401ef"; # Revision and date taken from the legacy tree, which still
# supports disper:
# https://github.com/phillipberndt/autorandr/tree/legacy
rev = "59f6aec0bb72e26751ce285d079e085b7178e45d";
date = "20150127";
in in
stdenv.mkDerivation { stdenv.mkDerivation {
name = "autorandr-${rev}"; name = "autorandr-${date}";
src = fetchgit { src = fetchgit {
inherit rev; inherit rev;
url = "https://github.com/wertarbyte/autorandr.git"; url = "https://github.com/phillipberndt/autorandr.git";
sha256 = "1x8agg6mf5jr0imw7dznr8kxyw970bf252bda9q7b0z4yksya2zd"; sha256 = "0mnggsp42477kbzwwn65gi8y0rydk10my9iahikvs6n43lphfa1f";
}; };
patchPhase = '' patchPhase = ''