nixpkgs/pkgs/development/libraries/libtsm/default.nix
Joachim Fasting 2866b84168
libtsm: fix eval
Ref: bd657a7293
2017-08-13 00:42:33 +02:00

27 lines
760 B
Nix

{ stdenv, lib, fetchurl, libxkbcommon, pkgconfig, autoreconfHook }:
stdenv.mkDerivation rec {
name = "libtsm-3";
src = fetchurl {
url = "http://freedesktop.org/software/kmscon/releases/${name}.tar.xz";
sha256 = "01ygwrsxfii0pngfikgqsb4fxp8n1bbs47l7hck81h9b9bc1ah8i";
};
buildInputs = [ libxkbcommon pkgconfig ] ++ lib.optionals stdenv.isDarwin [
autoreconfHook
];
configureFlags = [ "--disable-debug" ];
patches = lib.optional stdenv.isDarwin ./darwin.patch;
meta = with lib; {
description = "Terminal-emulator State Machine";
homepage = http://www.freedesktop.org/wiki/Software/kmscon/libtsm/;
license = licenses.mit;
maintainers = with maintainers; [ cstrahan ];
platforms = with platforms; unix;
};
}