lol

bicon: modernize

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