mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 17:33:09 +00:00
Merge pull request #162386 from mh182/mutt-ics
mutt-ics: add new package
This commit is contained in:
commit
1c66b1f06d
@ -8091,6 +8091,12 @@
|
||||
githubId = 20536514;
|
||||
name = "Magdalena Haselsteiner";
|
||||
};
|
||||
mh182 = {
|
||||
email = "mh182@chello.at";
|
||||
github = "mh182";
|
||||
githubId = 9980864;
|
||||
name = "Max Hofer";
|
||||
};
|
||||
mic92 = {
|
||||
email = "joerg@thalheim.io";
|
||||
matrix = "@mic92:nixos.dev";
|
||||
|
21
pkgs/tools/networking/mutt-ics/default.nix
Normal file
21
pkgs/tools/networking/mutt-ics/default.nix
Normal file
@ -0,0 +1,21 @@
|
||||
{ lib, python3 }:
|
||||
|
||||
with python3.pkgs; buildPythonApplication rec {
|
||||
pname = "mutt-ics";
|
||||
version = "0.9.2";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit version;
|
||||
pname = "mutt_ics";
|
||||
sha256 = "d44d4bec4e71c7f14df01b90fdb9563cdc784ece4250abfea5b0b675cfe85a50";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ icalendar ];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/dmedvinsky/mutt-ics";
|
||||
description = "A tool to show calendar event details in Mutt";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ mh182 ];
|
||||
};
|
||||
}
|
@ -27847,6 +27847,8 @@ with pkgs;
|
||||
};
|
||||
mutt-wizard = callPackage ../tools/misc/mutt-wizard { };
|
||||
|
||||
mutt-ics = callPackage ../tools/networking/mutt-ics { };
|
||||
|
||||
mwic = callPackage ../applications/misc/mwic {
|
||||
pythonPackages = python3Packages;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user