Advertisement
Guest User

Untitled

a guest
Aug 20th, 2019
309
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Scheme 0.98 KB | None | 0 0
  1. (define-module (ripgrep)
  2.   #:use-module (guix download)
  3.   #:use-module ((guix licenses) #:prefix license:)
  4.   #:use-module (guix packages)
  5.   #:use-module (guix git-download)
  6.   #:use-module (guix build-system gnu)
  7.   #:use-module (guix build-system cargo)
  8.   #:use-module (gnu packages)
  9.   #:use-module (gnu packages compression)
  10.   #:use-module (gnu packages apr))
  11.  
  12. (package
  13.   (name "ripgrep")
  14.   (version "11.0.2")
  15.   (source
  16.     (origin
  17.       (method git-fetch)
  18.       (uri (git-reference
  19.         (url "https://github.com/BurntSushi/ripgrep.git")
  20.         (commit "11.0.2")))
  21.       (file-name (git-file-name name version))
  22.       (sha256 (base32 "1iga3320mgi7m853la55xip514a3chqsdi1a1rwv25lr9b1p7vd3"))))
  23.   (build-system cargo-build-system)
  24.   (home-page "https://github.com/BurntSushi/ripgrep.git")
  25.   (synopsis "ripgrep recursively searches directories for a regex pattern")
  26.   (description "ripgrep recursively searches directories for a regex pattern")
  27.   (license license:expat))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement