summary refs log tree commit diff
path: root/pkgs/os-specific/linux/tmon
diff options
context:
space:
mode:
authorFelix Buehler <account@buehler.rocks>2022-01-10 23:30:11 +0100
committerFelix Buehler <account@buehler.rocks>2022-01-17 20:52:59 +0100
commit6cbf83ba01e4a71f2f24ff0dc20139d3a39134bd (patch)
treee16cd3bdba0b9c5c1a6fb56219d685383fd53e5c /pkgs/os-specific/linux/tmon
parent2ac65dd85b7fbe81b88e3c2a80d351aba4c4a9d8 (diff)
downloadnixpkgs-6cbf83ba01e4a71f2f24ff0dc20139d3a39134bd.tar
nixpkgs-6cbf83ba01e4a71f2f24ff0dc20139d3a39134bd.tar.gz
nixpkgs-6cbf83ba01e4a71f2f24ff0dc20139d3a39134bd.tar.bz2
nixpkgs-6cbf83ba01e4a71f2f24ff0dc20139d3a39134bd.tar.lz
nixpkgs-6cbf83ba01e4a71f2f24ff0dc20139d3a39134bd.tar.xz
nixpkgs-6cbf83ba01e4a71f2f24ff0dc20139d3a39134bd.tar.zst
nixpkgs-6cbf83ba01e4a71f2f24ff0dc20139d3a39134bd.zip
treewide: rename name to pname&version
Diffstat (limited to 'pkgs/os-specific/linux/tmon')
-rw-r--r--pkgs/os-specific/linux/tmon/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/os-specific/linux/tmon/default.nix b/pkgs/os-specific/linux/tmon/default.nix
index 5a14d3d2ee3..3a2697e0a71 100644
--- a/pkgs/os-specific/linux/tmon/default.nix
+++ b/pkgs/os-specific/linux/tmon/default.nix
@@ -1,7 +1,8 @@
 { lib, stdenv, kernel, ncurses }:
 
 stdenv.mkDerivation {
-  name = "tmon-${kernel.version}";
+  pname = "tmon";
+  version = kernel.version;
 
   inherit (kernel) src;