dog-1.7: added potential cat replacement
This commit is contained in:
parent
477eb18d18
commit
c60bd6e435
2 changed files with 27 additions and 0 deletions
25
pkgs/tools/system/dog/default.nix
Normal file
25
pkgs/tools/system/dog/default.nix
Normal file
|
@ -0,0 +1,25 @@
|
|||
{stdenv, fetchurl}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "dog-1.7";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://archive.debian.org/debian/pool/main/d/dog/dog_1.7.orig.tar.gz";
|
||||
sha256 = "3ef25907ec5d1dfb0df94c9388c020b593fbe162d7aaa9bd08f35d2a125af056";
|
||||
};
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out/bin
|
||||
mkdir -p $out/man/man1
|
||||
cp dog.1 $out/man/man1
|
||||
cp dog $out/bin
|
||||
'';
|
||||
|
||||
meta = {
|
||||
homepage = "http://lwn.net/Articles/421072/";
|
||||
description = "a cat replacement";
|
||||
license="GPLv2+";
|
||||
maintainers = with stdenv.lib.maintainers; [qknight];
|
||||
platforms = with stdenv.lib.platforms; all;
|
||||
};
|
||||
}
|
|
@ -915,6 +915,8 @@ let
|
|||
inherit (perlPackages) XMLSAX XMLParser XMLNamespaceSupport;
|
||||
};
|
||||
|
||||
dog = callPackage ../tools/system/dog { };
|
||||
|
||||
dosfstools = callPackage ../tools/filesystems/dosfstools { };
|
||||
|
||||
dotnetfx35 = callPackage ../development/libraries/dotnetfx35 { };
|
||||
|
|
Loading…
Reference in a new issue