summary refs log tree commit diff
path: root/pkgs/applications/window-managers/tabbed
diff options
context:
space:
mode:
authorSandro Jäckel <sandro.jaeckel@gmail.com>2021-11-08 09:47:34 +0100
committerSandro Jäckel <sandro.jaeckel@gmail.com>2021-11-08 10:21:23 +0100
commit023922bcd1ed9bf56fe3a0e122f604b6046b2354 (patch)
treeab6a7c470d22be9f7d60ea110dd483cf5da654c3 /pkgs/applications/window-managers/tabbed
parent86bf5eb0bbdb5dcbeeff9e372d5743c520c728bf (diff)
downloadnixpkgs-023922bcd1ed9bf56fe3a0e122f604b6046b2354.tar
nixpkgs-023922bcd1ed9bf56fe3a0e122f604b6046b2354.tar.gz
nixpkgs-023922bcd1ed9bf56fe3a0e122f604b6046b2354.tar.bz2
nixpkgs-023922bcd1ed9bf56fe3a0e122f604b6046b2354.tar.lz
nixpkgs-023922bcd1ed9bf56fe3a0e122f604b6046b2354.tar.xz
nixpkgs-023922bcd1ed9bf56fe3a0e122f604b6046b2354.tar.zst
nixpkgs-023922bcd1ed9bf56fe3a0e122f604b6046b2354.zip
tabbed: switch to pname+version, move with lib to meta
Diffstat (limited to 'pkgs/applications/window-managers/tabbed')
-rw-r--r--pkgs/applications/window-managers/tabbed/default.nix8
1 files changed, 3 insertions, 5 deletions
diff --git a/pkgs/applications/window-managers/tabbed/default.nix b/pkgs/applications/window-managers/tabbed/default.nix
index 938092bb8ab..7366ff19695 100644
--- a/pkgs/applications/window-managers/tabbed/default.nix
+++ b/pkgs/applications/window-managers/tabbed/default.nix
@@ -1,10 +1,8 @@
 { lib, stdenv, fetchgit, xorgproto, libX11, libXft, customConfig ? null, patches ? [ ] }:
 
-with lib;
-
 stdenv.mkDerivation {
-  name = "tabbed";
-  version = "unstable-20180310";
+  pname = "tabbed";
+  version = "unstable-2018-03-10";
 
   src = fetchgit {
     url = "https://git.suckless.org/tabbed";
@@ -24,7 +22,7 @@ stdenv.mkDerivation {
     "PREFIX=$(out)"
   ];
 
-  meta = {
+  meta = with lib; {
     homepage = "https://tools.suckless.org/tabbed";
     description = "Simple generic tabbed fronted to xembed aware applications";
     license = licenses.mit;