;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2016, 2017, 2018 Efraim Flashner ;;; Copyright © 2016 Matthew Jordan ;;; Copyright © 2016 Andy Wingo ;;; Copyright © 2016 Ludovic Courtès ;;; Copyright © 2016, 2017 Petter ;;; Copyright © 2016, 2017 Leo Famulari ;;; Copyright © 2017 Sergei Trofimovich ;;; Copyright © 2017 Alex Vong ;;; Copyright © 2018 Tobias Geerinckx-Rice ;;; Copyright © 2018 Christopher Baines ;;; Copyright © 2018 Tomáš Čech ;;; Copyright © 2018 Pierre-Antoine Rouby ;;; Copyright © 2018 Pierre Neidhardt ;;; Copyright @ 2018 Katherine Cox-Buday ;;; ;;; This file is part of GNU Guix. ;;; ;;; GNU Guix is free software; you can redistribute it and/or modify it ;;; under the terms of the GNU General Public License as published by ;;; the Free Software Foundation; either version 3 of the License, or (at ;;; your option) any later version. ;;; ;;; GNU Guix is distributed in the hope that it will be useful, but ;;; WITHOUT ANY WARRANTY; without even the implied warranty of ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See 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 . (define-module (gnu packages golang-web) ;; #:use-module (gnu packages admin) #:use-module (gnu packages gtk) ;; #:use-module (gnu packages base) #:use-module (gnu packages golang) #:use-module (gnu packages pkg-config) ;; #:use-module (gnu packages pcre) ;; #:use-module (gnu packages lua) ;; #:use-module (gnu packages mp3) ;;#:use-module (ice-9 match) ;;#:use-module (srfi srfi-1) #:use-module ((guix licenses) #:prefix license:) #:use-module (guix utils) #:use-module (guix download) #:use-module (guix git-download) #:use-module (guix packages) ;; #:use-module (guix build-system gnu) ;; #:use-module (guix build-system trivial) #:use-module (guix build-system go) ) (define-public go-bitmask-vpn (package (name "go-bitmask-vpn") (version "0.19.1") (source (origin (method git-fetch) (uri (git-reference (url "https://0xacab.org/leap/bitmask-vpn.git") (commit version))) (file-name (git-file-name name version)) (sha256 (base32 "0blq2q1rinpc5k9dh7yqxbhw7fmmcckm6f16wigl0g06z1rldr99")))) (build-system go-build-system) (arguments '(#:import-path "0xacab.org/leap/bitmask-vpn" ;; #:phases ;; (modify-phases %standard-phases ;; (delete 'configure)) )) (native-inputs `(("gtk+" ,gtk+) ("pkg-config" ,pkg-config) ;;("go" ,go) )) (home-page "https://0xacab.org/leap/bitmask-vpn") (synopsis "") (description "") (license license:gpl3+)))