Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / libraries / hyena / default.nix
blob177f6fe7909df3d16644fc256a01e5ea8aa29d34
1 { lib, stdenv, fetchurl, pkg-config, mono, gtk-sharp-2_0, monoDLLFixer }:
3 stdenv.mkDerivation rec {
4   pname = "hyena";
5   version = "0.5";
7   src = fetchurl {
8     url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.bz2";
9     sha256 = "eb7154a42b6529bb9746c39272719f3168d6363ed4bad305a916ed7d90bc8de9";
10   };
12   nativeBuildInputs = [ pkg-config ];
13   buildInputs = [
14     mono gtk-sharp-2_0
15   ];
17   postPatch = ''
18     patchShebangs build/dll-map-makefile-verifier
19     patchShebangs build/private-icon-theme-installer
20     substituteInPlace configure --replace lib/mono/2.0/ lib/mono/2.0-api/
21     find -name Makefile.in | xargs -n 1 -d '\n' sed -e 's/^dnl/#/' -i
22   '';
24   dontStrip = true;
26   inherit monoDLLFixer;
28   meta = with lib; {
29     homepage = "https://wiki.gnome.org/Attic/Hyena";
30     description = "A C# library which contains a hodge-podge of random stuff";
31     longDescription = ''
32       Hyena is a C# library used to make awesome applications. It contains a lot of random things,
33       including useful data structures, a Sqlite-based db layer, cool widgets, a JSON library,
34       a smart job/task scheduler, a user-query/search parser, and much more. It's particularly
35       useful for Gtk# applications, though only the Hyena.Gui assembly requires Gtk#.
36     '';
37     platforms = platforms.all;
38     maintainers = with maintainers; [ obadz ];
39     license = licenses.mit;
40   };