Jan Nieuwenhuizen <jann...@gnu.org> skribis: > From 44bcbdb30f6789d4bc460aa84dca27321c074cba Mon Sep 17 00:00:00 2001 > From: Jan Nieuwenhuizen <jann...@gnu.org> > Date: Thu, 19 May 2016 23:50:09 +0200 > Subject: [PATCH] gnu: Add sicp. > > * gnu/packages/scheme.scm (sicp): New variable.
Applied with minor changes: > + (version "20160220-1.5b52db56") Avoided the duplicated commit ID here following the manual (info "(guix) Version Numbers"). > + (origin > + (method git-fetch) > + (uri (git-reference > + (url "https://github.com/sarabander/sicp") > + (commit "5b52db566968d28a89fbbaf338d207f01cc81cac"))) > + (sha256 > + (base32 > + "10h6h7szwlfbshwh18bnl2hvyddj5i7106l79s145l0sjjv15cxb")))) Added a ‘file-name’ field, as noted by ‘guix lint’. > + (every zero? (map > + (cut system* "gzip" <>) Pass ‘-9n’, where ‘-n’ allows the thing to be bit-reproducible (see --rounds=2). Thanks! Ludo’.