summaryrefslogtreecommitdiff
path: root/package.scm
diff options
context:
space:
mode:
authorDavid Thompson <davet@gnu.org>2015-05-23 20:24:13 -0400
committerDavid Thompson <davet@gnu.org>2015-05-23 20:24:47 -0400
commit3c35564e16b762f6ad1928ab46ece0afc2b59ba1 (patch)
treee7596665e56292a3f2a501dff6ec8fab6dcfa523 /package.scm
parent74e7e843c2e734a62716722339bf41af488cfcb0 (diff)
Add new autotools based installation scripts.
Diffstat (limited to 'package.scm')
-rw-r--r--package.scm22
1 files changed, 22 insertions, 0 deletions
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+))