lol

bicon: modernize

+10 -10
+10 -10
pkgs/by-name/bi/bicon/package.nix
··· 10 10 xkbutils, 11 11 }: 12 12 13 - stdenv.mkDerivation rec { 13 + stdenv.mkDerivation (finalAttrs: { 14 14 pname = "bicon"; 15 - version = "unstable-2024-01-31"; 15 + version = "0.5-unstable-2024-01-31"; 16 16 17 17 src = fetchFromGitHub { 18 18 owner = "behdad"; 19 - repo = pname; 19 + repo = "bicon"; 20 20 rev = "48720c0f22197d4d5f7b0f5162a3d8f071e6e8a8"; 21 21 hash = "sha256-4pvI4T+fdgCirHDc0h3vP5AZyqfnBKv5R3fJICnpmF4="; 22 22 }; ··· 36 36 patchShebangs . 37 37 ''; 38 38 39 - meta = with lib; { 39 + meta = { 40 40 description = "Bidirectional console"; 41 41 homepage = "https://github.com/behdad/bicon"; 42 - license = [ 43 - licenses.lgpl21 44 - licenses.psfl 45 - licenses.bsd0 42 + license = with lib.licenses; [ 43 + lgpl21 44 + psfl 45 + bsd0 46 46 ]; 47 47 maintainers = [ ]; 48 - platforms = platforms.linux; 48 + platforms = lib.platforms.linux; 49 49 }; 50 - } 50 + })