summary refs log blame commit diff
path: root/pkgs/development/libraries/libestr/default.nix
blob: ad37f9010c5ca5979cef4bc0b91f7e12b5242215 (plain) (tree)
1
2
3
4
5
6
                     



                          
                  









                                                                     

    
{ stdenv, fetchurl }:

stdenv.mkDerivation rec {
  name = "libestr-0.1.10";

  src = fetchurl {
    url = "http://libestr.adiscon.com/files/download/${name}.tar.gz";
    sha256 = "0g3hmh3wxgjbn5g6cgy2l0ja806jd0ayp22bahcds3kmdq95wrdx";
  };

  meta = with stdenv.lib; {
    homepage = http://libestr.adiscon.com/;
    description = "some essentials for string handling";
    license = licenses.lgpl21;
    platforms = platforms.all;
    maintainers = with maintainers; [ wkennington ];
  };
}