linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / libraries / sblim-sfcc / default.nix
blobc871f18e69b38c96d2b54a97f49032af97e1cc87
1 { lib, stdenv, fetchFromGitHub, autoreconfHook, curl }:
3 stdenv.mkDerivation rec {
4   pname = "sblim-sfcc";
5   version = "2.2.9"; # this is technically 2.2.9-preview
7   src = fetchFromGitHub {
8     owner  = "kkaempf";
9     repo   = "sblim-sfcc";
10     rev    = "514a76af2020fd6dc6fc380df76cbe27786a76a2";
11     sha256 = "06c1mskl9ixbf26v88w0lvn6v2xd6n5f0jd5mckqrn9j4vmh70hs";
12   };
14   buildInputs = [ curl ];
16   nativeBuildInputs = [ autoreconfHook ];
18   enableParallelBuilding = true;
20   meta = with lib; {
21     description = "Small Footprint CIM Client Library";
22     homepage    = "https://sourceforge.net/projects/sblim/";
23     license     = licenses.cpl10;
24     maintainers = with maintainers; [ deepfire ];
25     platforms   = platforms.unix;
26     inherit version;
27   };