X-Git-Url: https://jxself.org/git/?p=8sync.git;a=blobdiff_plain;f=guix.scm;h=5a450d2865aa970459f703a6eb6a9ebb377442ca;hp=edcce847f4c44d6c087817a140c0f325b1ea0b08;hb=refs%2Fheads%2Fwebsockets;hpb=4a22f7f5957f2dfa5d10a84ca2d6f078e2dcf8ae diff --git a/guix.scm b/guix.scm index edcce84..5a450d2 100644 --- a/guix.scm +++ b/guix.scm @@ -1,20 +1,28 @@ ;;; 8sync --- Asynchronous programming for Guile ;;; Copyright (C) 2016 Jan Nieuwenhuizen +;;; Copyright (C) 2017 Christopher Allan Webber +;;; +;;; Also borrowing code from: +;;; guile-sdl2 --- FFI bindings for SDL2 +;;; Copyright © 2015 David Thompson ;;; ;;; This file is part of 8sync. +;;; However, unlike most of 8sync, which is under the LGPLv3+, this +;;; file in particular is licensed under GPLv3+. +;;; Guix is also licensed under GPLv3+. ;;; -;;; 8sync is free software: you can redistribute it and/or modify it -;;; under the terms of the GNU Lesser General Public License as -;;; published by the Free Software Foundation, either version 3 of the -;;; License, or (at your option) any later version. +;;; This program 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. ;;; -;;; 8sync is distributed in the hope that it will be useful, +;;; This program 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 Lesser General Public License for more details. -;;; -;;; You should have received a copy of the GNU Lesser General Public -;;; License along with 8sync. If not, see . +;;; GNU General Public License for more details. +;;; +;;; You should have received a copy of the GNU General Public License +;;; along with this program. If not, see . ;;; Commentary: ;; @@ -32,26 +40,46 @@ ;; ;;; Code: -(use-modules (guix packages) +(use-modules (srfi srfi-1) + (srfi srfi-26) + (ice-9 popen) + (ice-9 match) + (ice-9 rdelim) + (guix packages) (guix licenses) + (guix gexp) (guix git-download) (guix build-system gnu) + ((guix build utils) #:select (with-directory-excursion)) (gnu packages) (gnu packages autotools) (gnu packages guile) (gnu packages pkg-config) (gnu packages texinfo)) +(define %source-dir (dirname (current-filename))) + +(define git-file? + (let* ((pipe (with-directory-excursion %source-dir + (open-pipe* OPEN_READ "git" "ls-files"))) + (files (let loop ((lines '())) + (match (read-line pipe) + ((? eof-object?) + (reverse lines)) + (line + (loop (cons line lines)))))) + (status (close-pipe pipe))) + (lambda (file stat) + (match (stat:type stat) + ('directory #t) + ((or 'regular 'symlink) + (any (cut string-suffix? <> file) files)) + (_ #f))))) + (package - (name "8sync") - (version "0.4.0") - (source (origin - (method url-fetch) - (uri (string-append "mirror://gnu/guile/8sync-" version - ".tar.gz")) - (sha256 - (base32 - "1playdk7k0rsbp5iryv1i88gkm97xzvsrkyw10k6hs5z6zl28j19")))) + (name "guile-8sync") + (version "git") + (source (local-file %source-dir #:recursive? #t #:select? git-file?)) (build-system gnu-build-system) (native-inputs `(("autoconf" ,autoconf) ("automake" ,automake)