summary refs log tree commit diff
path: root/pkgs/development/libraries/libixp/libixp-0.3.nix
blob: b56c7d15cca63c010161f64adea3f35920a788a2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{stdenv, fetchurl}:

stdenv.mkDerivation {
  name = "libixp-0.3";
  description = "libixp is a stand-alone client/server 9P library including ixpc client which behaves like wmiir in the past. Its server api is based heavily on Plan 9's lib9p";
  builder = ./builder.sh;
  src = fetchurl {
    url = http://www.suckless.org/snaps/libixp-0.3.tar.gz;
    md5 = "d341eb9c8f5d233aba5aa2ea8295ca91";
  };
}