From 257341086549ed8a02ea35d50593696127f1eed5 Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Sun, 28 Jun 2015 10:22:45 +0200 Subject: gnu: withershins: Use new "libiberty" package. * gnu/packages/code.scm (withershins)[inputs]: Replace "gcc" with "libiberty". [arguments]: Simplify "find-libiberty" phase. --- gnu/packages/code.scm | 20 ++++++-------------- 1 file changed, 6 insertions(+), 14 deletions(-) (limited to 'gnu/packages/code.scm') diff --git a/gnu/packages/code.scm b/gnu/packages/code.scm index bcd10828e6..38f14380c4 100644 --- a/gnu/packages/code.scm +++ b/gnu/packages/code.scm @@ -246,25 +246,17 @@ (define-public withershins (build-system cmake-build-system) (arguments `(#:out-of-source? #f - #:modules ((guix build utils) - (guix build cmake-build-system) - (ice-9 popen) - (ice-9 rdelim)) #:phases (modify-phases %standard-phases (add-after 'unpack 'find-libiberty (lambda _ - (let ((plugin (let* ((port (open-input-pipe - "gcc -print-file-name=plugin")) - (str (read-line port))) - (close-pipe port) - str))) + (let ((libiberty (assoc-ref %build-inputs "libiberty"))) (substitute* "cmake/FindIberty.cmake" - (("/usr/include") (string-append plugin "/include")) - (("libiberty.a iberty") (string-append "NAMES libiberty.a iberty\nPATHS \"" - (assoc-ref %build-inputs "gcc") - "/lib" "\""))) + (("/usr/include") (string-append libiberty "/include")) + (("libiberty.a iberty") + (string-append "NAMES libiberty.a iberty\nPATHS \"" + libiberty "/lib" "\""))) #t))) (replace 'install @@ -279,7 +271,7 @@ (define-public withershins #t))))) (home-page "https://github.com/cameronwhite/withershins") (inputs - `(("gcc" ,gcc-4.8 "lib") ;for libiberty.a + `(("libiberty" ,libiberty) ("binutils" ,binutils) ;for libbfd ("zlib" ,zlib))) (synopsis "C++11 library for generating stack traces") -- cgit v1.2.3