summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorАлександр Бантьев <balsoft@yandex.ru>2019-03-18 01:12:48 +0300
committerАлександр Бантьев <balsoft@yandex.ru>2019-03-18 11:38:30 +0300
commitbcc8494e2c223007defafc18c263b8c41525218c (patch)
tree64182e1acd165bdbc3ef34999f501487f84dfea1 /pkgs/tools
parent0958787ca489dd743925f32152e8c1de97aba1a0 (diff)
parentd63071622931013ec5b71244ac4de4cf576c74e6 (diff)
downloadnixpkgs-bcc8494e2c223007defafc18c263b8c41525218c.tar
nixpkgs-bcc8494e2c223007defafc18c263b8c41525218c.tar.gz
nixpkgs-bcc8494e2c223007defafc18c263b8c41525218c.tar.bz2
nixpkgs-bcc8494e2c223007defafc18c263b8c41525218c.tar.lz
nixpkgs-bcc8494e2c223007defafc18c263b8c41525218c.tar.xz
nixpkgs-bcc8494e2c223007defafc18c263b8c41525218c.tar.zst
nixpkgs-bcc8494e2c223007defafc18c263b8c41525218c.zip
kanshi: init at 2019-02-02
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/misc/kanshi/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/tools/misc/kanshi/default.nix b/pkgs/tools/misc/kanshi/default.nix
index 0efbed6e275..8909a0c0eb5 100644
--- a/pkgs/tools/misc/kanshi/default.nix
+++ b/pkgs/tools/misc/kanshi/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchFromGitHub, rustPlatform, pkgconfig, libudev }:
+{ stdenv, fetchFromGitHub, rustPlatform, pkgconfig, udev }:
 rustPlatform.buildRustPackage 
 {
   pname = "kanshi-unstable";
@@ -11,7 +11,7 @@ rustPlatform.buildRustPackage
     sha256 = "10lfdan86bmwazpma6ixnv46z9cnf879gxln8gx87v7a1x3ss0bh";
   };
 
-  buildInputs = [ pkgconfig libudev ];
+  buildInputs = [ pkgconfig udev ];
 
   cargoSha256 = "sha256:0lf1zfmq9ypxk86ma0n4nczbklmjs631wdzfx4wd3cvhghyr8nkq";
 
@@ -34,7 +34,7 @@ rustPlatform.buildRustPackage
     homepage = "https://github.com/emersion/kanshi";
     downloadPage = "https://github.com/emersion/kanshi";
     license = stdenv.lib.licenses.mit;
-    maintainers = stdenv.lib.maintainers.balsoft;
+    maintainers = [ stdenv.lib.maintainers.balsoft ];
     platforms = stdenv.lib.platforms.linux;
   };
 }