mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-15 13:37:21 +03:00
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:
parent
977e0c6599
commit
7bd2052436
@ -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 = ''
|
||||
|
Loading…
Reference in New Issue
Block a user