summary refs log tree commit diff
path: root/pkgs/development/libraries/liboil/0.3.13.nix
blob: b1425e454fbc41e0272c189b5d2c641c52f43f88 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
args: with args;

stdenv.mkDerivation rec {
  name = "liboil-" + version;

  src = fetchurl {
    url = "${meta.homepage}/download/${name}.tar.gz";
    sha256 = "0cndfz98zca40qc1d2waq1dkfx32yscbllbvlnlhjp4cjlkyh9qg";
  };

  configureFlags = "--enable-shared --disable-static";

  buildInputs = [pkgconfig glib];

  meta = {
    homepage = http://liboil.freedesktop.org;
    description = "A library of simple functions that are optimized for various CPUs";
  };
}