summaryrefslogtreecommitdiff
path: root/gba-tools.scm
blob: fae54ac5aabd76d0e2a20f6e99d12c492cb4524c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
(define-module (gba-tools)
  #:use-module (guix packages)
  #:use-module (gnu packages autotools)
  #:use-module (guix git-download)
  #:use-module (guix build-system gnu)
  #:use-module ((guix licenses) #:prefix license:))

(define-public gba-tools
  (package
    (name "gba-tools")
    (version "1.2.0")
    (source (origin
              (method git-fetch)
              (uri (git-reference
                      (url "https://github.com/devkitPro/gba-tools")
                      (commit (string-append "v" version))))
              (sha256
                (base32
                  "1rlhyc9dsdxcmaih3x9qjb3ihr2xxz1rw42ijbz2ylymn9p133gh"))))
    (build-system gnu-build-system)
    (inputs (list automake autoconf))
    (synopsis "Collection of tools for Game Boy Advance development")
    (description "Collection of tools for Game Boy Advance development.")
    (home-page "https://github.com/devkitPro/gba-tools")
    (license license:gpl3+)))