about summary refs log tree commit diff
path: root/modules/past/web.scm
blob: a6cd4d3524cfe70256c568e2b3a02cb83b577d9d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
(define-module (past web)
  #:use-module ((guix licenses) #:prefix license:)
  #:use-module (guix packages)
  #:use-module (guix git-download)
  #:use-module (guix build-system trivial)
  #:use-module (gn packages web))

(define-public web-bootstrap-3.3
  (package
    (inherit web-bootstrap-3)
    (name "web-bootstrap")
    (version "3.3.7") ; July 25, 2016
    (source
      (origin
        (method git-fetch)
        (uri (git-reference
               (url "https://github.com/twbs/bootstrap.git")
               (commit (string-append "v" version))))
        (file-name (git-file-name name version))
        (sha256
         (base32 "0li7vdr4avz34b9xvwk7skbvnvzbx002cw5nfm7iwvi1wk8v5bri"))))
    (native-inputs `(("source" ,source)))))