nixpkgs/pkgs/development/libraries/smokegen/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
676 B
Nix
Raw Normal View History

{ stdenv, lib, cmake, qt4, fetchzip }:
2022-10-09 17:34:49 +00:00
stdenv.mkDerivation rec {
2022-10-09 17:34:49 +00:00
pname = "smokegen";
version = "4.14.3";
src = fetchzip {
url = "https://invent.kde.org/unmaintained/${pname}/-/archive/v${version}/${pname}-v${version}.tar.gz";
2022-10-09 17:34:49 +00:00
hash = "sha256-finsoruPeJZLawIjNUJ25Pq54eaCByfALVraNQJPk7c=";
};
strictDeps = true;
nativeBuildInputs = [ cmake qt4 ];
buildInputs = [ qt4 ];
2022-10-09 17:34:49 +00:00
meta = with lib; {
description = "A general purpose C++ parser with a plugin infrastructure";
homepage = "https://invent.kde.org/unmaintained/smokegen";
license = licenses.gpl2Only;
platforms = platforms.unix;
maintainers = with maintainers; [ uthar ];
};
}