1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-23 13:23:46 -04:00
nixpkgs/pkgs/applications/networking/irc/ii/default.nix

21 lines
419 B
Nix
Raw Normal View History

2012-07-26 03:25:52 -04:00
{stdenv, fetchurl}:
stdenv.mkDerivation rec {
name = "ii-1.7";
2012-07-26 03:25:52 -04:00
src = fetchurl {
url = "http://dl.suckless.org/tools/${name}.tar.gz";
sha256 = "176cqwnn6h7w4kbfd66hzqa243l26pqp2b06bii0nmnm0rkaqwis";
2012-07-26 03:25:52 -04:00
};
installPhase = ''
make install PREFIX=$out
'';
meta = {
homepage = http://tools.suckless.org/ii/;
license = "MIT";
description = "Irc it, simple FIFO based irc client";
};
}