blob: 130fbd356ee13c8ab2ac7e3949e74ffe8657e28f (
plain)
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
{
lib,
fetchFromGitHub,
fetchNpmDeps,
npmHooks,
rustPlatform,
pkg-config,
openssl,
nodejs,
nix-update-script,
}:
rustPlatform.buildRustPackage (finalAttrs: {
pname = "cook-cli";
version = "0.35.0";
src = fetchFromGitHub {
owner = "cooklang";
repo = "cookcli";
rev = "v${finalAttrs.version}";
hash = "sha256-d2sO25QtElhAATgUeyDQaYMN2ZC7r6Nj8IH9xe+pabs=";
};
cargoHash = "sha256-i8vE4iMe8JfghR2k9pNP3CkZlXP+87eF3MZfCBLxhiM=";
# Build without the self-updating feature
buildNoDefaultFeatures = true;
nativeBuildInputs = [
pkg-config
openssl
nodejs
npmHooks.npmConfigHook
];
buildInputs = [
openssl
];
env.OPENSSL_NO_VENDOR = 1;
npmDeps = fetchNpmDeps {
inherit (finalAttrs) src;
hash = "sha256-ZSRd4tcAsR1tKZ8ZBcb95C1FWEaijsA0WQ5EME0cOfo=";
};
preBuild = ''
npm run build-css
npm run build-js
'';
passthru.updateScript = nix-update-script { };
meta = {
changelog = "https://github.com/cooklang/cookcli/releases/tag/v${finalAttrs.version}";
description = "Suite of tools to create shopping lists and maintain recipes";
homepage = "https://cooklang.org/";
license = lib.licenses.mit;
mainProgram = "cook";
maintainers = [
lib.maintainers.emilioziniades
lib.maintainers.ginkogruen
lib.maintainers.pinage404
];
platforms = lib.platforms.linux ++ lib.platforms.darwin;
};
})
|