tangled
alpha
login
or
join now
wiro.world
/
dotfiles
2
fork
atom
yep, more dotfiles
2
fork
atom
overview
issues
1
pulls
1
pipelines
pkgs: remove asak
wiro.world
1 month ago
0215f162
b7466c90
verified
This commit was signed with the committer's
known signature
.
wiro.world
SSH Key Fingerprint:
SHA256:SmMcWpNAnL+VAgItSawvXgdPVn7f1rsyAuB/5VNclKY=
-44
3 changed files
expand all
collapse all
unified
split
home-manager
profiles
desktop.nix
pkgs
asak.nix
default.nix
-3
home-manager/profiles/desktop.nix
···
109
109
hunspellDicts.en_US-large
110
110
hunspellDicts.en_GB-large
111
111
112
112
-
# TUIs
113
113
-
lpkgs.asak
114
114
-
115
112
# CLIs
116
113
wf-recorder
117
114
wl-clipboard
-40
pkgs/asak.nix
···
1
1
-
{
2
2
-
lib,
3
3
-
rustPlatform,
4
4
-
fetchFromGitHub,
5
5
-
6
6
-
pkg-config,
7
7
-
alsa-lib,
8
8
-
jack2,
9
9
-
}:
10
10
-
11
11
-
rustPlatform.buildRustPackage rec {
12
12
-
pname = "asak";
13
13
-
version = "0.3.3";
14
14
-
15
15
-
src = fetchFromGitHub {
16
16
-
owner = "chaosprint";
17
17
-
repo = pname;
18
18
-
rev = "v${version}";
19
19
-
hash = "sha256-yhR8xLCFSmTG2yqsbiP3w8vcvLz4dsn4cbMPFedzUFI=";
20
20
-
};
21
21
-
22
22
-
cargoHash = "sha256-jhRh6xl+mi4sy8XopFP6YLghWYLqEmLVRhWfXAQ6m54=";
23
23
-
24
24
-
nativeBuildInputs = [
25
25
-
pkg-config
26
26
-
alsa-lib
27
27
-
jack2
28
28
-
];
29
29
-
30
30
-
PKG_CONFIG_PATH = "${alsa-lib.dev}/lib/pkgconfig:${jack2.dev}/lib/pkgconfig";
31
31
-
32
32
-
buildInputs = [ ];
33
33
-
34
34
-
meta = with lib; {
35
35
-
description = "A cross-platform audio recording/playback CLI tool with TUI";
36
36
-
homepage = "https://github.com/chaosprint/asak";
37
37
-
maintainers = [ "mrnossiom" ];
38
38
-
mainProgram = "asak";
39
39
-
};
40
40
-
}
-1
pkgs/default.nix
···
17
17
;
18
18
in
19
19
{
20
20
-
asak = callPackage ./asak.nix { };
21
20
ebnfer = callPackage ./ebnfer.nix { };
22
21
find-unicode = callPackage ./find-unicode.nix { };
23
22
lsr = callPackage ./lsr { };