summary refs log tree commit diff
path: root/pkgs/applications/misc/redshift
diff options
context:
space:
mode:
authorArseniy Seroka <ars.seroka@gmail.com>2015-04-09 03:37:43 +0300
committerArseniy Seroka <ars.seroka@gmail.com>2015-04-09 03:37:43 +0300
commit76e67b46b51c072de9783ad6148cc6b3b36260d6 (patch)
treef2c12cc8382fd5cb77fd583926e2f494abd3c714 /pkgs/applications/misc/redshift
parent08bf6c93c52aad248b3e0807ad890c100d90ebf3 (diff)
downloadnixpkgs-76e67b46b51c072de9783ad6148cc6b3b36260d6.tar
nixpkgs-76e67b46b51c072de9783ad6148cc6b3b36260d6.tar.gz
nixpkgs-76e67b46b51c072de9783ad6148cc6b3b36260d6.tar.bz2
nixpkgs-76e67b46b51c072de9783ad6148cc6b3b36260d6.tar.lz
nixpkgs-76e67b46b51c072de9783ad6148cc6b3b36260d6.tar.xz
nixpkgs-76e67b46b51c072de9783ad6148cc6b3b36260d6.tar.zst
nixpkgs-76e67b46b51c072de9783ad6148cc6b3b36260d6.zip
Revert "redshift: update 1.9.1 -> 1.10-git-20150222"
This reverts commit fb8308c4aff9ad86de3f2d850468cb5b4eacb43f.
Diffstat (limited to 'pkgs/applications/misc/redshift')
-rw-r--r--pkgs/applications/misc/redshift/default.nix22
1 files changed, 9 insertions, 13 deletions
diff --git a/pkgs/applications/misc/redshift/default.nix b/pkgs/applications/misc/redshift/default.nix
index 5d8e91764d4..6070c560815 100644
--- a/pkgs/applications/misc/redshift/default.nix
+++ b/pkgs/applications/misc/redshift/default.nix
@@ -1,15 +1,13 @@
-{ fetchFromGitHub, stdenv, libX11, libXrandr, libXxf86vm, libxcb, pkgconfig, python
+{ fetchurl, stdenv, libX11, libXrandr, libXxf86vm, libxcb, pkgconfig, python
 , randrproto, xcbutil, xf86vidmodeproto, autoconf, automake, gettext, glib
 , GConf, dbus, dbus_glib, makeWrapper, gtk, pygtk, pyxdg, geoclue }:
 
 stdenv.mkDerivation rec {
-  version = "1.10-git-20150222";
+  version = "1.9.1";
   name = "redshift-${version}";
-  src = fetchFromGitHub {
-    owner = "jonls";
-    repo  = "redshift";
-    rev   = "8b0a67a2538d7c79b74086caab07735fa97aa047";
-    sha256 = "0559ljri81iyig9j5i259nzb0z2ml37hhw5ppclcv6l25bzrkgip";
+  src = fetchurl {
+    url = "https://github.com/jonls/redshift/archive/v${version}.tar.gz";
+    sha256 = "0rj7lyg4ikwpk1hr1k2bgk9gjqvvv51z8hydsgpx2k2lqdv6lqri";
   };
 
   buildInputs = [
@@ -23,13 +21,11 @@ stdenv.mkDerivation rec {
   '';
 
   preInstall = ''
-    substituteInPlace src/redshift-gtk/redshift-gtk python \
-      --replace "/usr/bin/env python" "${python}/bin/${python.executable}"
+    substituteInPlace src/redshift-gtk/redshift-gtk python --replace "/usr/bin/env python" "${python}/bin/${python.executable}"
   '';
 
   postInstall = ''
-    wrapProgram "$out/bin/redshift-gtk" \
-      --prefix PYTHONPATH : $PYTHONPATH:${pygtk}/lib/${python.libPrefix}/site-packages/gtk-2.0:${pyxdg}/lib/${python.libPrefix}/site-packages/pyxdg:$out/lib/${python.libPrefix}/site-packages
+    wrapProgram "$out/bin/redshift-gtk" --prefix PYTHONPATH : $PYTHONPATH:${pygtk}/lib/${python.libPrefix}/site-packages/gtk-2.0:${pyxdg}/lib/${python.libPrefix}/site-packages/pyxdg:$out/lib/${python.libPrefix}/site-packages
   '';
 
   meta = with stdenv.lib; {
@@ -41,9 +37,9 @@ stdenv.mkDerivation rec {
       temperature transitions smoothly from night to daytime
       temperature to allow your eyes to slowly adapt.
       '';
-    license = licenses.gpl3Plus;
+    license = stdenv.lib.licenses.gpl3Plus;
     homepage = http://jonls.dk/redshift;
     platforms = platforms.linux;
     maintainers = [ maintainers.mornfall ];
-  };
+  }; 
 }