Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
G
Guix
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ogs
inf
Guix
Commits
f7d28082
Commit
f7d28082
authored
10 years ago
by
Alex Kost
Browse files
Options
Downloads
Patches
Plain Diff
gnu: Add giblib.
* gnu/packages/image.scm (giblib): New variable.
parent
76d88cfa
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
gnu/packages/image.scm
+27
-0
27 additions, 0 deletions
gnu/packages/image.scm
with
27 additions
and
0 deletions
gnu/packages/image.scm
+
27
−
0
View file @
f7d28082
...
@@ -265,3 +265,30 @@ (define-public imlib2
...
@@ -265,3 +265,30 @@ (define-public imlib2
;; This license adds several sentences to the original X11 license.
;; This license adds several sentences to the original X11 license.
(
license
(
license:x11-style
"file://COPYING"
(
license
(
license:x11-style
"file://COPYING"
"See 'COPYING' in the distribution."
))))
"See 'COPYING' in the distribution."
))))
(
define-public
giblib
(
package
(
name
"giblib"
)
(
version
"1.2.4"
)
(
source
(
origin
(
method
url-fetch
)
(
uri
(
string-append
"http://linuxbrit.co.uk/downloads/giblib-"
version
".tar.gz"
))
(
sha256
(
base32
"1b4bmbmj52glq0s898lppkpzxlprq9aav49r06j2wx4dv3212rhp"
))))
(
build-system
gnu-build-system
)
(
inputs
`
((
"libx11"
,
libx11
)
(
"imlib2"
,
imlib2
)))
(
home-page
"http://linuxbrit.co.uk/software/"
)
; no real home-page
(
synopsis
"Wrapper library for imlib2"
)
(
description
"giblib is a simple library which wraps imlib2's context API, avoiding
all the context_get/set calls, adds fontstyles to the truetype renderer and
supplies a generic doubly-linked list and some string functions."
)
;; This license removes a clause about X Consortium from the original
;; X11 license.
(
license
(
license:x11-style
"file://COPYING"
"See 'COPYING' in the distribution."
))))
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment