diff options
author | David Thompson <dthompson2@worcester.edu> | 2014-11-20 22:31:56 -0500 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2014-11-20 22:31:56 -0500 |
commit | c09e60e4d51259a752029999199b89b30ccddef3 (patch) | |
tree | 07e2fb9d8afa191d6df42c427b92f4cc05df0fb1 /gnu | |
parent | 0276f697b3dbab417dcad7ff32dfb4b9fb330ec4 (diff) | |
download | gnu-guix-c09e60e4d51259a752029999199b89b30ccddef3.tar gnu-guix-c09e60e4d51259a752029999199b89b30ccddef3.tar.gz |
gnu: Add pflask.
* gnu/packages/linux.scm (pflask): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/linux.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 069aae6d01..0d30aeea94 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -1659,3 +1659,26 @@ counters, tracepoints, kprobes, and uprobes (dynamic tracing). It is capable 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))) |