mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
7427b58266
(cherry picked from commit 22f212537f475565f67a07b869f9cceea2022191)
22 lines
480 B
Nix
22 lines
480 B
Nix
{stdenv, fetchurl}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "ii-1.8";
|
|
|
|
src = fetchurl {
|
|
url = "https://dl.suckless.org/tools/${name}.tar.gz";
|
|
sha256 = "1lk8vjl7i8dcjh4jkg8h8bkapcbs465sy8g9c0chfqsywbmf3ndr";
|
|
};
|
|
|
|
installPhase = ''
|
|
make install PREFIX=$out
|
|
'';
|
|
|
|
meta = {
|
|
homepage = https://tools.suckless.org/ii/;
|
|
license = stdenv.lib.licenses.mit;
|
|
description = "Irc it, simple FIFO based irc client";
|
|
platforms = stdenv.lib.platforms.unix;
|
|
};
|
|
}
|