mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
add cowsay
svn path=/nixpkgs/trunk/; revision=31936
This commit is contained in:
parent
399c575139
commit
37b404816a
2 changed files with 15 additions and 0 deletions
13
pkgs/tools/misc/cowsay/default.nix
Normal file
13
pkgs/tools/misc/cowsay/default.nix
Normal file
|
@ -0,0 +1,13 @@
|
|||
{ stdenv, fetchurl, perl }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "cowsay-3.03";
|
||||
src = fetchurl {
|
||||
url = http://www.nog.net/~tony/warez/cowsay-3.03.tar.gz;
|
||||
sha256 = "1bxj802na2si2bk5zh7n0b7c33mg8a5n2wnvh0vihl9bmjkp51hb";
|
||||
};
|
||||
buildInputs = [perl];
|
||||
installPhase = ''
|
||||
bash ./install.sh $out
|
||||
'';
|
||||
}
|
|
@ -505,6 +505,8 @@ let
|
|||
|
||||
convertlit = callPackage ../tools/text/convertlit { };
|
||||
|
||||
cowsay = callPackage ../tools/misc/cowsay { };
|
||||
|
||||
unifdef = callPackage ../development/tools/misc/unifdef { };
|
||||
|
||||
usb_modeswitch = callPackage ../development/tools/misc/usb-modeswitch { };
|
||||
|
|
Loading…
Reference in a new issue