about
aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/spreadsheet.scm
diff options
context:
space:
mode:
authorTobias Geerinckx-Rice <me@tobias.gr>2023-07-23 02:00:00 +0200
committerTobias Geerinckx-Rice <me@tobias.gr>2023-07-23 02:00:00 +0200
commitbfb480e76f7968f8e39e37e64681b0fd062edb1e (patch)
tree729fc758895111649d464eeb6f8337296abb5464 /gnu/packages/spreadsheet.scm
parent005912c595bf7a3329f8aa51a4ccb1d91b6ecd9e (diff)
downloadguix-bfb480e76f7968f8e39e37e64681b0fd062edb1e.tar.gz
guix-bfb480e76f7968f8e39e37e64681b0fd062edb1e.zip
gnu: qemu: Update to 7.2.4.
* gnu/packages/virtualization.scm (qemu): Update to 7.2.4.
Diffstat (limited to 'gnu/packages/spreadsheet.scm')
0 files changed, 0 insertions, 0 deletions
e the
+;;; GNU General Public License for more details.
+;;;
+;;; You should have received a copy of the GNU General Public License
+;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
+
+(define-module (gnu packages aidc)
+ #:use-module (gnu packages)
+ #:use-module ((guix licenses)
+ #:renamer (symbol-prefix-proc 'license:))
+ #:use-module (guix packages)
+ #:use-module (guix download)
+ #:use-module (guix build-system gnu))
+
+
+(define-public barcode
+ (package
+ (name "barcode")
+ (version "0.99")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append "mirror://gnu/barcode/barcode-"
+ version ".tar.xz"))
+ (sha256 (base32
+ "1indapql5fjz0bysyc88cmc54y8phqrbi7c76p71fgjp45jcyzp8"))))
+ (build-system gnu-build-system)
+ (synopsis "Convert text strings to printed bars in various standards")
+ (description "GNU Barcode is a flexible tool to produce printed barcodes
+from text strings. It supports a variety of encoding standards and sizing
+measurements. Barcodes can be output in PostScript or Encapsulated PostScript
+formats.")
+ (license license:gpl3+)
+ (home-page "http://www.gnu.org/software/barcode/")))