summary refs log tree commit diff
path: root/pkgs/development/libraries/libast/default.nix
blob: 348cfa9ed5b46c66940562dafbb6b3d888cc388b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ stdenv, fetchurl
, pkgconfig }:

stdenv.mkDerivation rec {
  pname = "libast";
  version = "0.7.1";

  src = fetchurl {
    url = "http://www.eterm.org/download/${pname}-${version}.tar.gz";
    sha256 = "1w7bs46r4lykfd83kc3bg9i1rxzzlb4ydk23ikf8mx8avz05q1aj";
  };

  nativeBuildInputs = [ pkgconfig ];

  meta = with stdenv.lib; {
    description = "Library of Assorted Spiffy Things";
    homepage = https://www.eterm.org;
    license = licenses.bsd2;
    maintainers = [ maintainers.AndersonTorres ];
    platforms = platforms.unix;
  };
}