From fc7718b843f66f2559c9e007b14c90a0d7aa86cc Mon Sep 17 00:00:00 2001 From: Ben Woodcroft Date: Mon, 5 Feb 2018 11:38:56 +0100 Subject: gnu: Add ruby-sass-spec. --- gnu/packages/ruby.scm | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index 426b1f6179..26f5f77496 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -8120,3 +8120,28 @@ but it can function as a stand-alone templating engine.") (home-page "http://github.com/brianmario/bzip2-ruby") (license #f)))) + +(define-public ruby-sass-spec + ;; There is no gem published so we package directly from the git repository. + (let ((commit "ac3d4160c19543273a8a515b0ec00014e311f329")) + (package + (name "ruby-sass-spec") + (version (string-append "0.8.3-1." (string-take commit 8))) + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/sass/sass-spec.git") + (commit commit))) + (file-name (string-append name "-" version "-checkout")) + (sha256 + (base32 + "0hmi1blvysf6388hmivn9idsn1s7hgi3yma3vzwdcaqjyhjbhsca")))) + (build-system ruby-build-system) + (arguments + `(#:tests? #t)) ; There are no tests, but this is to stop people using + ; this gem as it does not install correctly. + (synopsis "") + (description + "") + (home-page "") + (license license:expat)))) ;? -- cgit v1.2.3