tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
unflac: init at 1.0
authored by
Felipe Silva
and committed by
ehmry
3 years ago
a2a77753
2d549da5
+36
2 changed files
expand all
collapse all
unified
split
pkgs
tools
audio
unflac
default.nix
top-level
all-packages.nix
+34
pkgs/tools/audio/unflac/default.nix
···
1
1
+
{ lib
2
2
+
, buildGoModule
3
3
+
, fetchFromSourcehut
4
4
+
, ffmpeg
5
5
+
, makeWrapper
6
6
+
}:
7
7
+
8
8
+
buildGoModule rec {
9
9
+
pname = "unflac";
10
10
+
version = "1.0";
11
11
+
12
12
+
src = fetchFromSourcehut {
13
13
+
owner = "~ft";
14
14
+
repo = pname;
15
15
+
rev = version;
16
16
+
sha256 = "1vlwlm895mcvmxaxcid3vfji1zi9wjchz7divm096na4whj35cc4";
17
17
+
};
18
18
+
19
19
+
vendorSha256 = "sha256-QqLjz1X4uVpxhYXb/xIBwuLUhRaqwz2GDUPjBTS4ut0=";
20
20
+
21
21
+
nativeBuildInputs = [ makeWrapper ];
22
22
+
postFixup = ''
23
23
+
wrapProgram $out/bin/unflac --prefix PATH : "${lib.makeBinPath [ffmpeg]}"
24
24
+
'';
25
25
+
26
26
+
meta = with lib; {
27
27
+
description =
28
28
+
"A command line tool for fast frame accurate audio image + cue sheet splitting";
29
29
+
homepage = "https://sr.ht/~ft/unflac/";
30
30
+
license = licenses.mit;
31
31
+
platforms = platforms.all;
32
32
+
maintainers = with maintainers; [ felipeqq2 ];
33
33
+
};
34
34
+
}
+2
pkgs/top-level/all-packages.nix
···
1431
1431
1432
1432
ttchat = callPackage ../tools/misc/ttchat { };
1433
1433
1434
1434
+
unflac = callPackage ../tools/audio/unflac { };
1435
1435
+
1434
1436
veikk-linux-driver-gui = libsForQt5.callPackage ../tools/misc/veikk-linux-driver-gui { };
1435
1437
1436
1438
ventoy-bin = callPackage ../tools/cd-dvd/ventoy-bin {