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
c09e60e4
Commit
c09e60e4
authored
10 years ago
by
David Thompson
Browse files
Options
Downloads
Patches
Plain Diff
gnu: Add pflask.
* gnu/packages/linux.scm (pflask): New variable.
parent
0276f697
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
gnu/packages/linux.scm
+23
-0
23 additions, 0 deletions
gnu/packages/linux.scm
with
23 additions
and
0 deletions
gnu/packages/linux.scm
+
23
−
0
View file @
c09e60e4
...
...
@@ -1659,3 +1659,26 @@ (define-public perf
of lightweight profiling. This package contains the user-land tools and in
particular the 'perf' command."
)
(
license
(
package-license
linux-libre
))))
(
define-public
pflask
(
package
(
name
"pflask"
)
(
version
"0.2"
)
(
source
(
origin
(
method
url-fetch
)
(
uri
(
string-append
"https://github.com/ghedo/pflask/archive/v"
version
".tar.gz"
))
(
sha256
(
base32
"1g8fjj67dfkc2s0852l9vqi1pm61gp4rxbpzbzg780f5s5hd1fys"
))))
(
build-system
cmake-build-system
)
(
arguments
'
(
#
:tests?
#f
))
; no tests
(
home-page
"http://ghedo.github.io/pflask/"
)
(
synopsis
"Simple tool for creating Linux namespace containers"
)
(
description
"pflask is a simple tool for creating Linux namespace
containers. It can be used for running a command or even booting an OS inside
an isolated container, created with the help of Linux namespaces. It is
similar in functionality to chroot, although pflask provides better isolation
thanks to the use of namespaces."
)
(
license
bsd-2
)))
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