summary refs log tree commit diff
path: root/pkgs/applications/misc/i810/default.nix
diff options
context:
space:
mode:
authorMarc Weber <marco-oweber@gmx.de>2007-10-26 00:54:19 +0000
committerMarc Weber <marco-oweber@gmx.de>2007-10-26 00:54:19 +0000
commit02ff4fc875d3057e16fbb0c2bc2f2fe8563e6361 (patch)
treeac81d4726f55e0cf91c4673e58feecf451ee5c28 /pkgs/applications/misc/i810/default.nix
parent14d5909a2f9d93bfac6dad2953853676afc6ee3a (diff)
downloadnixpkgs-02ff4fc875d3057e16fbb0c2bc2f2fe8563e6361.tar
nixpkgs-02ff4fc875d3057e16fbb0c2bc2f2fe8563e6361.tar.gz
nixpkgs-02ff4fc875d3057e16fbb0c2bc2f2fe8563e6361.tar.bz2
nixpkgs-02ff4fc875d3057e16fbb0c2bc2f2fe8563e6361.tar.lz
nixpkgs-02ff4fc875d3057e16fbb0c2bc2f2fe8563e6361.tar.xz
nixpkgs-02ff4fc875d3057e16fbb0c2bc2f2fe8563e6361.tar.zst
nixpkgs-02ff4fc875d3057e16fbb0c2bc2f2fe8563e6361.zip
This nix expression is conributed by Tobias Hammerschmidt as well
svn path=/nixpkgs/trunk/; revision=9525
Diffstat (limited to 'pkgs/applications/misc/i810/default.nix')
-rw-r--r--pkgs/applications/misc/i810/default.nix25
1 files changed, 25 insertions, 0 deletions
diff --git a/pkgs/applications/misc/i810/default.nix b/pkgs/applications/misc/i810/default.nix
new file mode 100644
index 00000000000..9aab0827632
--- /dev/null
+++ b/pkgs/applications/misc/i810/default.nix
@@ -0,0 +1,25 @@
+args: with args; stdenv.mkDerivation {
+  name = "i810switch-0.6.5";
+
+  phases = "installPhase";
+
+  installPhase = "
+    sed -i -e 's+/usr++' Makefile
+    sed -i -e 's+^\\(.*putenv(\"PATH=\\).*$+\\1${pciutils}/sbin\");+' i810switch.c
+    make clean
+    make install DESTDIR=\${out}
+  ";
+
+  inherit pciutils;
+
+  src = fetchurl {
+    url = http://www16.plala.or.jp/mano-a-mano/i810switch/i810switch-0.6.5.tar.gz;
+    sha256 = "d714840e3b14e1fa9c432c4be0044b7c008d904dece0d611554655b979cad4c3";
+  };
+
+  meta = {
+    description = "i810switch is a utility for switching the LCD and external VGA display.";
+    homepage = "http://www16.plala.or.jp/mano-a-mano/i810switch.html";
+    license = "GPL2";
+  };
+}