add notcoal (wip)
This commit is contained in:
parent
066c275cba
commit
0f390344df
3 changed files with 652 additions and 1 deletions
27
packages/notcoal/default.nix
Normal file
27
packages/notcoal/default.nix
Normal file
|
@ -0,0 +1,27 @@
|
|||
{ lib, stdenv, rustPlatform, notmuch, bash }:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "notcoal";
|
||||
version = "0.3.0";
|
||||
|
||||
src = fetchTarball {
|
||||
url = https://ghom.niij.org/eaon/notcoal/archive/v0.3.0.tar.gz;
|
||||
sha256 = "19gaba6asid5vplcy9q0ama40dvwwxglc40ks5240lydrvgfrimq";
|
||||
};
|
||||
cargoPatches = [
|
||||
./Cargo.lock.patch
|
||||
];
|
||||
cargoSha256 = "0kgjxq2319l2gh1xc0f3ir1pa6z7p62z3fccswwxrz7gbn7nc07c";
|
||||
cargoBuildFlags = ["--feature=standalone"];
|
||||
|
||||
buildInputs = [
|
||||
bash
|
||||
notmuch
|
||||
];
|
||||
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "An email tagger for notmuch";
|
||||
homepage = "https://ghom.niij.org/eaon/notcoal";
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue