nixpkgs/pkgs/tools/system/dog/default.nix
Tobias Geerinckx-Rice b2d7f4b1ba Use common licence attributes from lib/licenses.nix
Many (less easily automatically converted) old-style strings
remain.

Where there was any possible ambiguity about the exact version or
variant intended, nothing was changed. IANAL, nor a search robot.

Use `with stdenv.lib` wherever it makes sense.
2015-05-27 22:00:06 +02:00

25 lines
626 B
Nix

{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 = with stdenv.lib; {
homepage = "http://lwn.net/Articles/421072/";
description = "cat replacement";
license = with licenses; gpl2Plus;
maintainers = with maintainers; [ qknight ];
platforms = with platforms; all;
};
}