summary refs log tree commit diff
path: root/pkgs/os-specific/linux/i810switch
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2021-08-04 15:42:09 +0200
committerGitHub <noreply@github.com>2021-08-04 15:42:09 +0200
commitf0bac487d3a34a7fc8003409e44e964d9c8adb9e (patch)
tree8ebefcec9dc6933a0a4eb9d09cc6ccafcefbfa5d /pkgs/os-specific/linux/i810switch
parent63d293ca1d9c6f33c34988675efa6d9d51b5821e (diff)
parent83067147ac73be983ee31d7387f9411ca86b0f43 (diff)
downloadnixpkgs-f0bac487d3a34a7fc8003409e44e964d9c8adb9e.tar
nixpkgs-f0bac487d3a34a7fc8003409e44e964d9c8adb9e.tar.gz
nixpkgs-f0bac487d3a34a7fc8003409e44e964d9c8adb9e.tar.bz2
nixpkgs-f0bac487d3a34a7fc8003409e44e964d9c8adb9e.tar.lz
nixpkgs-f0bac487d3a34a7fc8003409e44e964d9c8adb9e.tar.xz
nixpkgs-f0bac487d3a34a7fc8003409e44e964d9c8adb9e.tar.zst
nixpkgs-f0bac487d3a34a7fc8003409e44e964d9c8adb9e.zip
Merge pull request #132659 from SuperSandro2000/SuperSandro2000-patch-1
i810switch: switch to pname + version
Diffstat (limited to 'pkgs/os-specific/linux/i810switch')
-rw-r--r--pkgs/os-specific/linux/i810switch/default.nix10
1 files changed, 6 insertions, 4 deletions
diff --git a/pkgs/os-specific/linux/i810switch/default.nix b/pkgs/os-specific/linux/i810switch/default.nix
index 993a19caadf..3a202ca08e9 100644
--- a/pkgs/os-specific/linux/i810switch/default.nix
+++ b/pkgs/os-specific/linux/i810switch/default.nix
@@ -1,7 +1,8 @@
 { lib, stdenv, fetchurl, pciutils }:
 
 stdenv.mkDerivation {
-  name = "i810switch-0.6.5";
+  pname = "i810switch";
+  version = "0.6.5";
 
   installPhase = "
     sed -i -e 's+/usr++' Makefile
@@ -15,10 +16,11 @@ stdenv.mkDerivation {
     sha256 = "d714840e3b14e1fa9c432c4be0044b7c008d904dece0d611554655b979cad4c3";
   };
 
-  meta = {
+  meta = with lib; {
     description = "A utility for switching between the LCD and external VGA display on Intel graphics cards";
     homepage = "http://www16.plala.or.jp/mano-a-mano/i810switch.html";
-    license = lib.licenses.gpl2;
-    platforms = lib.platforms.linux;
+    maintainers = with maintainers; [ ];
+    license = licenses.gpl2;
+    platforms = platforms.linux;
   };
 }