linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / libraries / smooth / default.nix
blobf868623821129b2341b1327c16cf981b869f546b
1 { lib
2 , stdenv
3 , fetchFromGitHub
4 , pkg-config
6 , gtk3
7 , curl
8 , libxml2
9 }:
11 stdenv.mkDerivation rec {
12   pname = "smooth";
13   version = "0.9.6";
15   src = fetchFromGitHub {
16     owner = "enzo1982";
17     repo = "smooth";
18     rev = "v${version}";
19     sha256 = "05j5gk6kz2089x8bcq2l0kjspfiiymxn69jcxl4dh9lw96blbadr";
20   };
22   nativeBuildInputs = [
23     pkg-config
24   ];
26   makeFlags = [
27     "prefix=$(out)"
28   ];
30   buildInputs = [
31     gtk3
32     curl
33     libxml2
34   ];
36   meta = with lib; {
37     description = "The smooth Class Library";
38     license = licenses.artistic2;
39     homepage = "http://www.smooth-project.org/";
40     maintainers = with maintainers; [ shamilton ];
41     platforms = platforms.linux;
42   };