tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
bicon: modernize
Doron Behar
1 year ago
a09f6327
53ae00c7
+10
-10
1 changed file
expand all
collapse all
unified
split
pkgs
by-name
bi
bicon
package.nix
+10
-10
pkgs/by-name/bi/bicon/package.nix
···
10
10
xkbutils,
11
11
}:
12
12
13
13
-
stdenv.mkDerivation rec {
13
13
+
stdenv.mkDerivation (finalAttrs: {
14
14
pname = "bicon";
15
15
-
version = "unstable-2024-01-31";
15
15
+
version = "0.5-unstable-2024-01-31";
16
16
17
17
src = fetchFromGitHub {
18
18
owner = "behdad";
19
19
-
repo = pname;
19
19
+
repo = "bicon";
20
20
rev = "48720c0f22197d4d5f7b0f5162a3d8f071e6e8a8";
21
21
hash = "sha256-4pvI4T+fdgCirHDc0h3vP5AZyqfnBKv5R3fJICnpmF4=";
22
22
};
···
36
36
patchShebangs .
37
37
'';
38
38
39
39
-
meta = with lib; {
39
39
+
meta = {
40
40
description = "Bidirectional console";
41
41
homepage = "https://github.com/behdad/bicon";
42
42
-
license = [
43
43
-
licenses.lgpl21
44
44
-
licenses.psfl
45
45
-
licenses.bsd0
42
42
+
license = with lib.licenses; [
43
43
+
lgpl21
44
44
+
psfl
45
45
+
bsd0
46
46
];
47
47
maintainers = [ ];
48
48
-
platforms = platforms.linux;
48
48
+
platforms = lib.platforms.linux;
49
49
};
50
50
-
}
50
50
+
})