From mboxrd@z Thu Jan 1 00:00:00 1970 From: David Thompson Subject: [PATCH] gnu: Add pflask. Date: Thu, 20 Nov 2014 22:33:56 -0500 Message-ID: <87sihdb523.fsf@izanagi.i-did-not-set--mail-host-address--so-tickle-me> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:39115) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Xreyx-0000Hq-FU for guix-devel@gnu.org; Thu, 20 Nov 2014 22:34:04 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Xreyu-0007p1-9R for guix-devel@gnu.org; Thu, 20 Nov 2014 22:34:03 -0500 Received: from mail.fsf.org ([208.118.235.13]:44010) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Xreyu-0007ox-5Y for guix-devel@gnu.org; Thu, 20 Nov 2014 22:34:00 -0500 Received: from 209-6-40-86.c3-0.smr-ubr1.sbo-smr.ma.cable.rcn.com ([209.6.40.86]:54485 helo=izanagi) by mail.fsf.org with esmtpsa (TLS-1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.69) (envelope-from ) id 1Xreyt-00056m-Gd for guix-devel@gnu.org; Thu, 20 Nov 2014 22:33:59 -0500 List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: guix-devel@gnu.org --=-=-= Content-Type: text/x-diff Content-Disposition: inline; filename=0001-gnu-Add-pflask.patch >From c09e60e4d51259a752029999199b89b30ccddef3 Mon Sep 17 00:00:00 2001 From: David Thompson Date: Thu, 20 Nov 2014 22:31:56 -0500 Subject: [PATCH] gnu: Add pflask. * gnu/packages/linux.scm (pflask): New variable. --- gnu/packages/linux.scm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 069aae6..0d30aee 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))) -- 2.1.1 --=-=-= Content-Type: text/plain -- David Thompson Web Developer - Free Software Foundation - http://fsf.org GPG Key: 0FF1D807 Support the FSF: https://fsf.org/donate --=-=-=--