diff options
author | Wojtek Kosior <koszko@koszko.org> | 2023-12-09 10:59:40 +0100 |
---|---|---|
committer | W. Kosior <koszko@koszko.org> | 2024-09-04 21:02:07 +0200 |
commit | 7e603b03e92fa34a7baba0280f55cf791ce1c0d4 (patch) | |
tree | 79d8b2ce366c5e27035bcc7fa7838879e493e6f2 /gnu | |
parent | adbb08fd05a91580fdeb92eeb9bf356b53464243 (diff) | |
download | guix-7e603b03e92fa34a7baba0280f55cf791ce1c0d4.tar.gz guix-7e603b03e92fa34a7baba0280f55cf791ce1c0d4.zip |
gnu: Add lawrence-bolierplate.
* gnu/packages/autotools.scm (lawrence-boilerplate): New variable.
Change-Id: Ib29e2ef3165ee151226ac4d4bc41ec5b51df8038
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/autotools.scm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/autotools.scm b/gnu/packages/autotools.scm index 79d25b59a5..85ed417d44 100644 --- a/gnu/packages/autotools.scm +++ b/gnu/packages/autotools.scm @@ -13,6 +13,9 @@ ;;; Copyright © 2020, 2023 Jan (janneke) Nieuwenhuizen <janneke@gnu.org> ;;; Copyright © 2021 Maxim Cournoyer <maxim.cournoyer@gmail.com> ;;; Copyright © 2022 Marius Bakke <marius@gnu.org> +;;; Copyright © 2023 Wojtek Kosior <koszko@koszko.org> +;;; Additions and modifications by Wojtek Kosior are additionally +;;; dual-licensed under the Creative Commons Zero v1.0. ;;; ;;; This file is part of GNU Guix. ;;; @@ -293,6 +296,27 @@ greatly expanding the domain of its functionality. These macros have been contributed as free software by the community.") (license gpl3+))) +(define-public lawrence-boilerplate + (package + (name "lawrence-boilerplate") + (version "0.1") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://git.koszko.org/lawrence-boilerplate") + (commit "8bd8fd7820b84c24c7acd1b12e755ea6b42eda9b"))) + (sha256 + (base32 + "1fh8lisfv6kvk55hmraky7awkcwiqqnin770zldfa9xa5yya7xrq")))) + (build-system gnu-build-system) + (native-inputs + (list autoconf automake)) + (home-page "https://git.koszko.org/lawrence-boilerplate/about") + (synopsis "Less copy-pasting for Guile autotoolized projects") + (description "This package provides autoconf macro for generating a +@file{pre-inst-env} script for GNU Guile projects.") + (license cc0))) + (define-public autobuild (package (name "autobuild") |