From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Bishmer J. Sekaran" Subject: [PATCH] Add dcfldd Date: Sun, 3 Aug 2014 20:25:58 -0700 Message-ID: <92c8e67cb6f35ac651fb8ca3529d6072.squirrel@webmail.scorpionrock.com> Reply-To: bishmer@scorpionrock.com Mime-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 Content-Transfer-Encoding: 8bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:34645) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XE9Vv-0008W9-PY for guix-devel@gnu.org; Mon, 04 Aug 2014 00:04:51 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XE9Vr-0006uj-P9 for guix-devel@gnu.org; Mon, 04 Aug 2014 00:04:47 -0400 Received: from biz88.inmotionhosting.com ([173.247.248.166]:37854) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XE9Vr-0006s3-I9 for guix-devel@gnu.org; Mon, 04 Aug 2014 00:04:43 -0400 Received: from localhost ([127.0.0.1]:42192 helo=webmail.scorpionrock.com) by biz88.inmotionhosting.com with esmtpa (Exim 4.82) (envelope-from ) id 1XE8uM-0005ig-MZ for guix-devel@gnu.org; Sun, 03 Aug 2014 20:26:03 -0700 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 >From fadbb3a11b972499e4fe5a2f6ec69c98b387ecc7 Mon Sep 17 00:00:00 2001 From: "Bishmer J. Sekaran" Date: Mon, 4 Aug 2014 19:21:23 +0800 Subject: [PATCH] [PATCH] Add dcfldd --- gnu-system.am | 1 + gnu/packages/dcfldd.scm | 51 +++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 52 insertions(+) create mode 100644 gnu/packages/dcfldd.scm diff --git a/gnu-system.am b/gnu-system.am index 6e1e8af..346cbe5 100644 --- a/gnu-system.am +++ b/gnu-system.am @@ -67,6 +67,7 @@ GNU_SYSTEM_MODULES = \ gnu/packages/cyrus-sasl.scm \ gnu/packages/datamash.scm \ gnu/packages/dc.scm \ + gnu/packages/dcfldd.scm \ gnu/packages/dejagnu.scm \ gnu/packages/dictionaries.scm \ gnu/packages/disk.scm \ diff --git a/gnu/packages/dcfldd.scm b/gnu/packages/dcfldd.scm new file mode 100644 index 0000000..451a212 --- /dev/null +++ b/gnu/packages/dcfldd.scm @@ -0,0 +1,51 @@ +;;; GNU Guix --- Functional package management for GNU +;;; Copyright © 2012 Nikita Karetnikov +;;; Copyright © 2014 Ludovic Courtès +;;; Copyright © 2014 Bishmer J. Sekaran +;;; +;;; This file is part of GNU Guix. +;;; +;;; GNU Guix is free software; you can redistribute it and/or modify it +;;; under the terms of the GNU General Public License as published by +;;; the Free Software Foundation; either version 3 of the License, or (at +;;; your option) any later version. +;;; +;;; GNU Guix is distributed in the hope that it will be useful, but +;;; WITHOUT ANY WARRANTY; without even the implied warranty of +;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +;;; GNU General Public License for more details. +;;; +;;; You should have received a copy of the GNU General Public License +;;; along with GNU Guix. If not, see . + +(define-module (gnu packages dcfldd) + #:use-module (guix licenses) + #:use-module (gnu packages gnutls) + #:use-module (gnu packages perl) + #:use-module (guix packages) + #:use-module (guix download) + #:use-module (guix build-system gnu)) + +(define-public dcfldd + (package + (name "dcfldd") + (version "1.3.4-1") + (source + (origin + (method url-fetch) + (uri (string-append "http://nchc.dl.sourceforge.net/project/dcfldd/dcfldd/1.3.4-1/dcfldd-" + version ".tar.gz")) + (sha256 + (base32 + "1y6mwsvm75f5jzxsjjk0yhf8xnpmz6y8qvcxfandavx59lc3l57m")))) + (build-system gnu-build-system) + (inputs + `(("gnutls" ,gnutls))) + (native-inputs + `(("perl" ,perl))) + (home-page "http://www.gnu.org/software/wget/") + (synopsis "A version of dd with a progress indicator and other features") + (description + "Created by the US Department of Defence's Computer Forensics Laboratory, dcfldd is an enhanced version of GNU dd with features + useful for forensics and security.") + (license gpl2))) -- 1.8.4