From 3c35564e16b762f6ad1928ab46ece0afc2b59ba1 Mon Sep 17 00:00:00 2001 From: David Thompson Date: Sat, 23 May 2015 20:24:13 -0400 Subject: Add new autotools based installation scripts. --- package.scm | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 package.scm (limited to 'package.scm') diff --git a/package.scm b/package.scm new file mode 100644 index 0000000..66722f4 --- /dev/null +++ b/package.scm @@ -0,0 +1,22 @@ +(use-modules (guix packages) + (guix licenses) + (guix build-system trivial) + (gnu packages base) + (gnu packages autotools) + (gnu packages guile)) + +(package + (name "dotfiles") + (version "0") + (source #f) + (build-system trivial-build-system) + (native-inputs + `(("make" ,gnu-make) + ("autoconf" ,autoconf) + ("automake" ,automake))) + (inputs + `(("guile" ,guile-2.0))) + (synopsis "Dave's dotfiles") + (description "All of my glorious dotfiles.") + (home-page "https://git.dthompson.us/dotfiles.git") + (license gpl3+)) -- cgit v1.2.3