bicon: modernize

This commit is contained in:
Doron Behar
2025-01-08 14:01:05 +02:00
parent 53ae00c749
commit a09f632722
+10 -10
View File
@@ -10,13 +10,13 @@
xkbutils,
}:
stdenv.mkDerivation rec {
stdenv.mkDerivation (finalAttrs: {
pname = "bicon";
version = "unstable-2024-01-31";
version = "0.5-unstable-2024-01-31";
src = fetchFromGitHub {
owner = "behdad";
repo = pname;
repo = "bicon";
rev = "48720c0f22197d4d5f7b0f5162a3d8f071e6e8a8";
hash = "sha256-4pvI4T+fdgCirHDc0h3vP5AZyqfnBKv5R3fJICnpmF4=";
};
@@ -36,15 +36,15 @@ stdenv.mkDerivation rec {
patchShebangs .
'';
meta = with lib; {
meta = {
description = "Bidirectional console";
homepage = "https://github.com/behdad/bicon";
license = [
licenses.lgpl21
licenses.psfl
licenses.bsd0
license = with lib.licenses; [
lgpl21
psfl
bsd0
];
maintainers = [ ];
platforms = platforms.linux;
platforms = lib.platforms.linux;
};
}
})