nixpkgs/pkgs/development/libraries/db/db-6.2.nix

9 lines
242 B
Nix
Raw Normal View History

2017-03-17 10:53:11 +01:00
{ stdenv, fetchurl, ... } @ args:
import ./generic.nix (args // rec {
version = "6.2.23";
sha256 = "1isxx4jfmnh913jzhp8hhfngbk6dsg46f4kjpvvc56maj64jqqa7";
license = stdenv.lib.licenses.agpl3;
extraPatches = [ ./clang-6.0.patch ];
})