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
, stdenv
, enableXRandr ? true, xrandr ? null
, enableDisper ? false, disper ? null
, enableDisper ? true, disper ? null
, xdpyinfo }:
assert enableXRandr -> xrandr != null;
assert enableDisper -> disper != null;
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
stdenv.mkDerivation {
name = "autorandr-${rev}";
name = "autorandr-${date}";
src = fetchgit {
inherit rev;
url = "https://github.com/wertarbyte/autorandr.git";
sha256 = "1x8agg6mf5jr0imw7dznr8kxyw970bf252bda9q7b0z4yksya2zd";
url = "https://github.com/phillipberndt/autorandr.git";
sha256 = "0mnggsp42477kbzwwn65gi8y0rydk10my9iahikvs6n43lphfa1f";
};
patchPhase = ''