# Pastebin 9nhp28xV (use-modules ((guix licenses) #:prefix license:) (guix packages) (guix git-download) (guix build-system cmake) (gnu packages gtk)) (define-public textadept (package (name "textadept") (version "12.1") (license license:expat) (home-page "https://orbitalquark.github.io/textadept/") (synopsis "...") (description "...") (source (origin (method git-fetch) (file-name (git-file-name name version)) (uri (git-reference (url "https://github.com/orbitalquark/textadept") (commit (string-append "textadept_" version)))) (sha256 (base32 "1mx4lwjybfrd6y7a05mgzgv1rrrdqlfpyxqkklikkqvzckyd9vki")))) (build-system cmake-build-system) (inputs (list gtk)))) textadept