-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.nix
More file actions
32 lines (28 loc) · 732 Bytes
/
package.nix
File metadata and controls
32 lines (28 loc) · 732 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{ lib
, rustPlatform
, makeWrapper
, libsrc ? ./.
, pkg-config
, sqlite
, ffmpeg
}:
let
manifest = (lib.importTOML ./Cargo.toml).package;
in rustPlatform.buildRustPackage {
pname = manifest.name;
version = manifest.version;
meta = with lib; {
description = "Tool that makes a lossy mirror of your lossless music collection.";
homepage = "https://github.com/Apeiros-46B/sidechain";
license = licenses.unlicense;
maintainers = [];
};
nativeBuildInputs = [ pkg-config makeWrapper ];
buildInputs = [ sqlite ];
src = lib.cleanSource libsrc;
cargoLock.lockFile = ./Cargo.lock;
postInstall = ''
wrapProgram $out/bin/${manifest.name} \
--prefix PATH : ${lib.makeBinPath [ ffmpeg ]}
'';
}