Skip to content

Commit

Permalink
smokegen: init at v4.14.3
Browse files Browse the repository at this point in the history
  • Loading branch information
kgalkowski-comscore committed Oct 9, 2022
1 parent 5317b0c commit d7ea3d7
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 0 deletions.
6 changes: 6 additions & 0 deletions maintainers/maintainer-list.nix
Original file line number Diff line number Diff line change
Expand Up @@ -13980,6 +13980,12 @@
githubId = 928084;
name = "Utku Demir";
};
uthar = {
email = "[email protected]";
github = "uthar";
githubId = 15697697;
name = "Kasper Gałkowski";
};
uvnikita = {
email = "[email protected]";
github = "uvNikita";
Expand Down
21 changes: 21 additions & 0 deletions pkgs/development/libraries/smokegen/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{ pkgs, lib, ... }:

pkgs.stdenv.mkDerivation rec {
pname = "smokegen";
version = "v4.14.3";
src = pkgs.fetchzip {
url = "https://invent.kde.org/unmaintained/${pname}/-/archive/${version}/${pname}-${version}.tar.gz";
hash = "sha256-finsoruPeJZLawIjNUJ25Pq54eaCByfALVraNQJPk7c=";
};
buildInputs = [ pkgs.cmake pkgs.qt4 ];
buildPhase = ''
cmake .
'';
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 ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -4733,6 +4733,8 @@ with pkgs;

simg2img = callPackage ../tools/filesystems/simg2img { };

smokegen = callPackage ../development/libraries/smokegen {};

snazy = callPackage ../development/tools/snazy { };

snippetpixie = callPackage ../tools/text/snippetpixie { };
Expand Down

0 comments on commit d7ea3d7

Please sign in to comment.