mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-22 14:45:27 +00:00
sqlite: 3.5.6 added
svn path=/nixpkgs/branches/stdenv-updates/; revision=10612
This commit is contained in:
parent
e2751942c7
commit
c3193c538a
18
pkgs/development/libraries/sqlite/3.5.6.nix
Normal file
18
pkgs/development/libraries/sqlite/3.5.6.nix
Normal file
|
@ -0,0 +1,18 @@
|
|||
args: with args;
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "sqlite-" + version;
|
||||
|
||||
src = fetchurl {
|
||||
url = "${meta.homepage}/${name}.tar.gz";
|
||||
sha256 = "1fz82x3wp2h1g701w8qrsg58hc0jmrhw2593crx0c663iqhvjwqn";
|
||||
};
|
||||
|
||||
configureFlags = "--enable-shared --disable-static";
|
||||
|
||||
propagatedBuildInputs = [readline];
|
||||
|
||||
meta = {
|
||||
homepage = http://www.sqlite.org;
|
||||
};
|
||||
}
|
|
@ -2632,8 +2632,8 @@ rec {
|
|||
inherit fetchurl stdenv libogg;
|
||||
};
|
||||
|
||||
sqlite = import ../development/libraries/sqlite {
|
||||
inherit fetchurl stdenv;
|
||||
sqlite = selectVersion ../development/libraries/sqlite "3.5.6" {
|
||||
inherit fetchurl stdenv readline;
|
||||
};
|
||||
|
||||
t1lib = import ../development/libraries/t1lib {
|
||||
|
|
Loading…
Reference in a new issue