From 539d69f565f0f3ada8a08ebc5a199b97dbc89b73 Mon Sep 17 00:00:00 2001 From: Griffin Smith Date: Tue, 14 Jun 2022 10:15:53 -0400 Subject: feat(grfn/home): Add binding for extracting patch from email Change-Id: Id568f8b479cebe547e1ad8a309ccfa395bf99b83 Reviewed-on: https://cl.tvl.fyi/c/depot/+/5935 Tested-by: BuildkiteCI Reviewed-by: grfn Autosubmit: grfn --- users/grfn/pkgs/notmuch-extract-patch.nix | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 users/grfn/pkgs/notmuch-extract-patch.nix (limited to 'users/grfn/pkgs') diff --git a/users/grfn/pkgs/notmuch-extract-patch.nix b/users/grfn/pkgs/notmuch-extract-patch.nix new file mode 100644 index 000000000000..54dad260a041 --- /dev/null +++ b/users/grfn/pkgs/notmuch-extract-patch.nix @@ -0,0 +1,18 @@ +{ pkgs, ... }: + +let + inherit (pkgs) lib; + src = pkgs.fetchurl { + url = "https://raw.githubusercontent.com/aaptel/notmuch-extract-patch/f732a53e12a7c91a06755ebfab2007adc9b3063b/notmuch-extract-patch"; + sha256 = "0nawkl04sj7psw6ikzay7kydj3dhd0fkwghcsf5rzaw4bmp4kbax"; + }; + +in +pkgs.runCommandNoCC "notmuch-extract-patch" +{ + buildInputs = [ pkgs.python3 ]; +} '' + mkdir -p $out/bin + install -m 755 ${src} $out/bin/notmuch-extract-patch + patchShebangs $out/bin +'' -- cgit 1.4.1