blob: 512745e563dd887f4d23f546bc251f6addf51165 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
{ poetry2nix, fetchFromGitHub, lib, ... }:
poetry2nix.mkPoetryApplication {
projectDir = fetchFromGitHub {
owner = "cooklang";
repo = "cook-import";
rev = "d92e44a";
hash = "sha256-SSrLN0qhHNalF8RrsZvezqZvAkcKCLukSGW9f3IHIIE=";
};
meta = with lib; {
homepage = "https://github.com/cooklang/cook-import";
description = "A command-line tool to import recipes into Cooklang format";
license = licenses.mit;
mainProgram = "cook-import";
broken = true;
};
}
|